From: Srinivas Kandagatla Date: Fri, 22 Feb 2013 00:44:31 +0000 (-0800) Subject: drivers/rtc/rtc-ds2404.c: use module_platform_driver macro X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=56ae1b8e420015f1428bf9443f1b3321ad789b02;p=linux-beck.git drivers/rtc/rtc-ds2404.c: use module_platform_driver macro Remove removes some code duplication by using module_platform_driver(). Signed-off-by: Srinivas Kandagatla Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-ds2404.c b/drivers/rtc/rtc-ds2404.c index 5ea9df7c8c31..4539e37c2238 100644 --- a/drivers/rtc/rtc-ds2404.c +++ b/drivers/rtc/rtc-ds2404.c @@ -283,19 +283,7 @@ static struct platform_driver rtc_device_driver = { .owner = THIS_MODULE, }, }; - -static __init int ds2404_init(void) -{ - return platform_driver_register(&rtc_device_driver); -} - -static __exit void ds2404_exit(void) -{ - platform_driver_unregister(&rtc_device_driver); -} - -module_init(ds2404_init); -module_exit(ds2404_exit); +module_platform_driver(rtc_device_driver); MODULE_DESCRIPTION("DS2404 RTC"); MODULE_AUTHOR("Sven Schnelle");