[PATCH] s390 (3/6): online attribute.

From: Martin Schwidefsky (schwidefsky@de.ibm.com)
Date: Tue Jul 01 2003 - 13:45:52 EST


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
+++ linux-2.5-s390/drivers/s390/cio/device.c Tue Jul 1 20:48:27 2003
@@ -1,7 +1,7 @@
 /*
  * drivers/s390/cio/device.c
  * bus driver for ccw devices
- * $Revision: 1.57 $
+ * $Revision: 1.58 $
  *
  * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,
  * IBM Corporation
@@ -305,9 +305,9 @@
                 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
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Jul 07 2003 - 22:00:14 EST