s390 (3/6): online attribute.

s390 (3/6): online attribute.

Post by Martin Schwidefsk » Wed, 02 Jul 2003 21:00:13



Fix online attribute. "echo 1 > online" should enable a device and
"echo 0 > online" should disable a device, not the other way round.

diffstat:
 drivers/s390/cio/device.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff -urN linux-2.5/drivers/s390/cio/device.c linux-2.5-s390/drivers/s390/cio/device.c
--- linux-2.5/drivers/s390/cio/device.c Tue Jul  1 20:48:10 2003

 /*
  *  drivers/s390/cio/device.c
  *  bus driver for ccw devices
- *   $Revision: 1.57 $
+ *   $Revision: 1.58 $
  *
  *    Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,

                return count;

        i = simple_strtoul(buf, &tmp, 16);
-       if (i == 0 && cdev->drv->set_online)
+       if (i == 1 && cdev->drv->set_online)
                ccw_device_set_online(cdev);
-       else if (i == 1 && cdev->drv->set_offline)
+       else if (i == 0 && cdev->drv->set_offline)
                ccw_device_set_offline(cdev);
        else
                return -EINVAL;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in

More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/