mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
rtc: rtc-nuc900: 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
1963f7cd19
commit
af5e7db68c
@ -311,18 +311,7 @@ static struct platform_driver nuc900_rtc_driver = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __init nuc900_rtc_init(void)
|
||||
{
|
||||
return platform_driver_probe(&nuc900_rtc_driver, nuc900_rtc_probe);
|
||||
}
|
||||
|
||||
static void __exit nuc900_rtc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&nuc900_rtc_driver);
|
||||
}
|
||||
|
||||
module_init(nuc900_rtc_init);
|
||||
module_exit(nuc900_rtc_exit);
|
||||
module_platform_driver_probe(nuc900_rtc_driver, nuc900_rtc_probe);
|
||||
|
||||
MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>");
|
||||
MODULE_DESCRIPTION("nuc910/nuc920 RTC driver");
|
||||
|
Loading…
Reference in New Issue
Block a user