forked from Minki/linux
rtc: rtc-au1xxx: 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> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ac36960f42
commit
aaa8345881
@ -134,18 +134,7 @@ static struct platform_driver au1xrtc_driver = {
|
||||
.remove = au1xtoy_rtc_remove,
|
||||
};
|
||||
|
||||
static int __init au1xtoy_rtc_init(void)
|
||||
{
|
||||
return platform_driver_probe(&au1xrtc_driver, au1xtoy_rtc_probe);
|
||||
}
|
||||
|
||||
static void __exit au1xtoy_rtc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&au1xrtc_driver);
|
||||
}
|
||||
|
||||
module_init(au1xtoy_rtc_init);
|
||||
module_exit(au1xtoy_rtc_exit);
|
||||
module_platform_driver_probe(au1xrtc_driver, au1xtoy_rtc_probe);
|
||||
|
||||
MODULE_DESCRIPTION("Au1xxx TOY-counter-based RTC driver");
|
||||
MODULE_AUTHOR("Manuel Lauss <manuel.lauss@gmail.com>");
|
||||
|
Loading…
Reference in New Issue
Block a user