diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2006-12-21 06:42:55 +0100 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2006-12-21 06:42:55 +0100 |
commit | 65a2d2258e0f29371606aa0f7f4258e618ecebe8 (patch) | |
tree | bd296243c031e3974a70e74cf516575e24df850d /drivers/input/mouse/pc110pad.c | |
parent | Input: ucb1400 - fix compile error (diff) | |
download | linux-65a2d2258e0f29371606aa0f7f4258e618ecebe8.tar.xz linux-65a2d2258e0f29371606aa0f7f4258e618ecebe8.zip |
Input: pc110pad - return proper error
The driver should return -ENODEV rather than -ENOENT when it
detects a PCI device in the box.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mouse/pc110pad.c')
-rw-r--r-- | drivers/input/mouse/pc110pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mouse/pc110pad.c b/drivers/input/mouse/pc110pad.c index f155c1fea04e..05d992e514f0 100644 --- a/drivers/input/mouse/pc110pad.c +++ b/drivers/input/mouse/pc110pad.c @@ -113,7 +113,7 @@ static int __init pc110pad_init(void) dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, NULL); if (dev) { pci_dev_put(dev); - return -ENOENT; + return -ENODEV; } if (!request_region(pc110pad_io, 4, "pc110pad")) { |