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>
This commit is contained in:
parent
bff19b1d0b
commit
65a2d2258e
|
@ -113,7 +113,7 @@ static int __init pc110pad_init(void)
|
||||||
dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, NULL);
|
dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, NULL);
|
||||||
if (dev) {
|
if (dev) {
|
||||||
pci_dev_put(dev);
|
pci_dev_put(dev);
|
||||||
return -ENOENT;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!request_region(pc110pad_io, 4, "pc110pad")) {
|
if (!request_region(pc110pad_io, 4, "pc110pad")) {
|
||||||
|
|
Loading…
Reference in New Issue