According to the comment, "if we find any PCI devices in the machine, we don't have a PC110" in pc110pad.c, we should return -ENODEV rather than -ENOENT in this case.
Cc: Dmitry Torokhov <[EMAIL PROTECTED]> Cc: Vojtech Pavlik <[EMAIL PROTECTED]> Signed-off-by: Akinobu Mita <[EMAIL PROTECTED]> --- drivers/input/mouse/pc110pad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: 2.6-mm/drivers/input/mouse/pc110pad.c =================================================================== --- 2.6-mm.orig/drivers/input/mouse/pc110pad.c +++ 2.6-mm/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")) { - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/