The patch titled pc110pad: return proper error has been removed from the -mm tree. Its filename was pc110pad-return-proper-error.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pc110pad: return proper error From: Akinobu Mita <akinobu.mita@xxxxxxxxx> 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 <dmitry.torokhov@xxxxxxxxx> Cc: Vojtech Pavlik <vojtech@xxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/input/mouse/pc110pad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/input/mouse/pc110pad.c~pc110pad-return-proper-error drivers/input/mouse/pc110pad.c --- a/drivers/input/mouse/pc110pad.c~pc110pad-return-proper-error +++ a/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")) { _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.patch audit-fix-kstrdup-error-check.patch gss_spkm3-fix-error-handling-in-module-init.patch tlclk-delete-unnecessary-sysfs_remove_group.patch git-acpi.patch git-alsa.patch powerpc-use-is_init.patch git-dvb.patch ehca-fix-kthread_create-error-check.patch ehca-fix-do_mmap-error-check.patch git-input.patch git-mtd.patch net-use-bitrev8.patch auth_gss-unregister-gss_domain-when-unloading-module.patch iscsi-fix-crypto_alloc_hash-error-check.patch git-watchdog.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html