From: Jingoo Han Date: Mon, 29 Apr 2013 23:18:28 +0000 (-0700) Subject: drivers/rtc/rtc-max77686.c: use module_platform_driver() X-Git-Tag: v3.10-rc1~178^2~206 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0c58ff587738c25e4402a51df6575230e7f099e1;p=uclinux-h8%2Flinux.git drivers/rtc/rtc-max77686.c: use module_platform_driver() Use module_platform_driver() macro which makes the code smaller and simpler. Signed-off-by: Jingoo Han Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-max77686.c b/drivers/rtc/rtc-max77686.c index 6b1337f9baf4..a8e31fc833e2 100644 --- a/drivers/rtc/rtc-max77686.c +++ b/drivers/rtc/rtc-max77686.c @@ -624,17 +624,7 @@ static struct platform_driver max77686_rtc_driver = { .id_table = rtc_id, }; -static int __init max77686_rtc_init(void) -{ - return platform_driver_register(&max77686_rtc_driver); -} -module_init(max77686_rtc_init); - -static void __exit max77686_rtc_exit(void) -{ - platform_driver_unregister(&max77686_rtc_driver); -} -module_exit(max77686_rtc_exit); +module_platform_driver(max77686_rtc_driver); MODULE_DESCRIPTION("Maxim MAX77686 RTC driver"); MODULE_AUTHOR("");