Commit 050bf1e444507f0d18c2b1c65dad26bcd5926496

Authored by Jingoo Han
Committed by Linus Torvalds
1 parent 0de4c7c150

rtc: rtc-ps3: use module_platform_driver_probe()

Use module_platform_driver_probe() macro which makes the code smaller and
simpler.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 12 deletions Side-by-side Diff

drivers/rtc/rtc-ps3.c
... ... @@ -85,18 +85,7 @@
85 85 .remove = __exit_p(ps3_rtc_remove),
86 86 };
87 87  
88   -static int __init ps3_rtc_init(void)
89   -{
90   - return platform_driver_probe(&ps3_rtc_driver, ps3_rtc_probe);
91   -}
92   -
93   -static void __exit ps3_rtc_fini(void)
94   -{
95   - platform_driver_unregister(&ps3_rtc_driver);
96   -}
97   -
98   -module_init(ps3_rtc_init);
99   -module_exit(ps3_rtc_fini);
  88 +module_platform_driver_probe(ps3_rtc_driver, ps3_rtc_probe);
100 89  
101 90 MODULE_AUTHOR("Sony Corporation");
102 91 MODULE_LICENSE("GPL");