The patch titled Subject: drivers/rtc/rtc-at91sam9.c: use module_platform_driver() macro has been added to the -mm tree. Its filename is rtc-at91sam9-use-module_platform_driver-macro.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Devendra Naga <develkernel412222@xxxxxxxxx> Subject: drivers/rtc/rtc-at91sam9.c: use module_platform_driver() macro This driver does seems to do only platform_driver_register in the init function and platform_driver_unregister in the exit function, so replace all this code including the module_init and module_exit with module_platform_driver macro... Signed-off-by: Devendra Naga <develkernel412222@xxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-at91sam9.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff -puN drivers/rtc/rtc-at91sam9.c~rtc-at91sam9-use-module_platform_driver-macro drivers/rtc/rtc-at91sam9.c --- a/drivers/rtc/rtc-at91sam9.c~rtc-at91sam9-use-module_platform_driver-macro +++ a/drivers/rtc/rtc-at91sam9.c @@ -465,18 +465,7 @@ static struct platform_driver at91_rtc_d }, }; -static int __init at91_rtc_init(void) -{ - return platform_driver_register(&at91_rtc_driver); -} -module_init(at91_rtc_init); - -static void __exit at91_rtc_exit(void) -{ - platform_driver_unregister(&at91_rtc_driver); -} -module_exit(at91_rtc_exit); - +module_platform_driver(at91_rtc_driver); MODULE_AUTHOR("Michel Benoit"); MODULE_DESCRIPTION("RTC driver for Atmel AT91SAM9x"); _ Patches currently in -mm which might be from develkernel412222@xxxxxxxxx are origin.patch linux-next.patch rtc-at91sam9-use-module_platform_driver-macro.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