diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2009-11-12 13:50:06 -0500 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-11-13 02:45:54 -0500 |
commit | 8721c81f6480e2c9acbf92078383953f825d1057 (patch) | |
tree | a0ccf01bd22f1685462235866843e04a4859677f /drivers/block/cciss_scsi.c | |
parent | 5c07a311a80adb0138fc08e8279c60255d88d0b8 (diff) |
cciss: Fix weird usage of ENXIO in cciss_scsi.c
cciss: Fix weird usage of ENXIO in cciss_scsi.c
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/block/cciss_scsi.c')
-rw-r--r-- | drivers/block/cciss_scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss_scsi.c b/drivers/block/cciss_scsi.c index 237d2b353652..5d0e46dc3632 100644 --- a/drivers/block/cciss_scsi.c +++ b/drivers/block/cciss_scsi.c | |||
@@ -1547,7 +1547,7 @@ cciss_engage_scsi(int ctlr) | |||
1547 | if (sa->registered) { | 1547 | if (sa->registered) { |
1548 | printk("cciss%d: SCSI subsystem already engaged.\n", ctlr); | 1548 | printk("cciss%d: SCSI subsystem already engaged.\n", ctlr); |
1549 | spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags); | 1549 | spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags); |
1550 | return ENXIO; | 1550 | return -ENXIO; |
1551 | } | 1551 | } |
1552 | sa->registered = 1; | 1552 | sa->registered = 1; |
1553 | spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags); | 1553 | spin_unlock_irqrestore(CCISS_LOCK(ctlr), flags); |