Subject: + drivers-rtc-rtc-twlc-cleanup-with-module_platform_driver-conversion.patch added to -mm tree To: peter.ujfalusi@xxxxxx,khilman@xxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Mon, 10 Jun 2013 14:49:25 -0700 The patch titled Subject: drivers/rtc/rtc-twl.c: cleanup with module_platform_driver() conversion has been added to the -mm tree. Its filename is drivers-rtc-rtc-twlc-cleanup-with-module_platform_driver-conversion.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: Peter Ujfalusi <peter.ujfalusi@xxxxxx> Subject: drivers/rtc/rtc-twl.c: cleanup with module_platform_driver() conversion Use module_platform_driver() to register the platform driver. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@xxxxxx> Acked-by: Kevin Hilman <khilman@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-twl.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff -puN drivers/rtc/rtc-twl.c~drivers-rtc-rtc-twlc-cleanup-with-module_platform_driver-conversion drivers/rtc/rtc-twl.c --- a/drivers/rtc/rtc-twl.c~drivers-rtc-rtc-twlc-cleanup-with-module_platform_driver-conversion +++ a/drivers/rtc/rtc-twl.c @@ -626,17 +626,7 @@ static struct platform_driver twl4030rtc }, }; -static int __init twl_rtc_init(void) -{ - return platform_driver_register(&twl4030rtc_driver); -} -module_init(twl_rtc_init); - -static void __exit twl_rtc_exit(void) -{ - platform_driver_unregister(&twl4030rtc_driver); -} -module_exit(twl_rtc_exit); +module_platform_driver(twl4030rtc_driver); MODULE_AUTHOR("Texas Instruments, MontaVista Software"); MODULE_LICENSE("GPL"); _ Patches currently in -mm which might be from peter.ujfalusi@xxxxxx are drivers-rtc-rtc-twlc-fix-rtc_reg_map-initialization.patch drivers-rtc-rtc-twlc-cleanup-with-module_platform_driver-conversion.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