mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
rtc: rtc-efi: 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
625f5225bd
commit
52c6ecbc80
@ -218,18 +218,7 @@ static struct platform_driver efi_rtc_driver = {
|
||||
.remove = __exit_p(efi_rtc_remove),
|
||||
};
|
||||
|
||||
static int __init efi_rtc_init(void)
|
||||
{
|
||||
return platform_driver_probe(&efi_rtc_driver, efi_rtc_probe);
|
||||
}
|
||||
|
||||
static void __exit efi_rtc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&efi_rtc_driver);
|
||||
}
|
||||
|
||||
module_init(efi_rtc_init);
|
||||
module_exit(efi_rtc_exit);
|
||||
module_platform_driver_probe(efi_rtc_driver, efi_rtc_probe);
|
||||
|
||||
MODULE_AUTHOR("dann frazier <dannf@hp.com>");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
Loading…
Reference in New Issue
Block a user