The patch titled edd: fix incorrect return of 1 from module_init has been removed from the -mm tree. Its filename was edd-fix-incorrect-return-of-1-from-module_init.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: edd: fix incorrect return of 1 from module_init From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Matt Domsch <Matt_Domsch@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/firmware/edd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/firmware/edd.c~edd-fix-incorrect-return-of-1-from-module_init drivers/firmware/edd.c --- a/drivers/firmware/edd.c~edd-fix-incorrect-return-of-1-from-module_init +++ a/drivers/firmware/edd.c @@ -753,7 +753,7 @@ edd_init(void) if (!edd_num_devices()) { printk(KERN_INFO "EDD information not available.\n"); - return 1; + return -ENODEV; } edd_kset = kset_create_and_add("edd", NULL, firmware_kobj); _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch linux-next.patch cifs-switch-to-seq_files.patch isdn-divas-fix-proc-creation.patch mpt-remove-unused-struct-mpt_proc_entry_t.patch move-proc_kmsg_operations-to-fs-proc-internalh.patch sysctl-allow-override-of-proc-sys-net-with-cap_net_admin.patch proc-use-non-racy-method-for-proc-page_owner-creation-page_owner.patch likely_prof-changed-to-use-proc_create.patch proc-remove-proc_root-from-drivers-likelyprof.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