diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-01-19 15:53:55 +0000 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-01-23 05:24:17 -0500 |
commit | 3e9b90265e9ab191c8f7e072fd0abf05824d2f1b (patch) | |
tree | 4dc623fdf6f8cf9675ec62d7a635eab9826b78f6 | |
parent | 0f069788c32ea7af108c6032dfb0594cc718bde8 (diff) | |
download | linux-3.10-3e9b90265e9ab191c8f7e072fd0abf05824d2f1b.tar.gz linux-3.10-3e9b90265e9ab191c8f7e072fd0abf05824d2f1b.tar.bz2 linux-3.10-3e9b90265e9ab191c8f7e072fd0abf05824d2f1b.zip |
pata_winbond: error return
If no device is active return an error not zero.
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r-- | drivers/ata/pata_winbond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_winbond.c b/drivers/ata/pata_winbond.c index 17a9d071323..99c92eda217 100644 --- a/drivers/ata/pata_winbond.c +++ b/drivers/ata/pata_winbond.c @@ -195,7 +195,7 @@ static __init int winbond_init_one(unsigned long port) reg = winbond_readcfg(port, 0x81); if (!(reg & 0x03)) /* Disabled */ - return 0; + return -ENODEV; for (i = 0; i < 2 ; i ++) { unsigned long cmd_port = 0x1F0 - (0x80 * i); |