diff options
Diffstat (limited to 'drivers/rtc')
| -rw-r--r-- | drivers/rtc/class.c | 4 | ||||
| -rw-r--r-- | drivers/rtc/rtc-dev.c | 2 | ||||
| -rw-r--r-- | drivers/rtc/rtc-proc.c | 2 | ||||
| -rw-r--r-- | drivers/rtc/rtc-sysfs.c | 2 | 
4 files changed, 5 insertions, 5 deletions
diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c index 1cb61a761cb..306d600a764 100644 --- a/drivers/rtc/class.c +++ b/drivers/rtc/class.c @@ -142,9 +142,9 @@ static void __exit rtc_exit(void)  	class_destroy(rtc_class);  } -module_init(rtc_init); +subsys_initcall(rtc_init);  module_exit(rtc_exit); -MODULE_AUTHOR("Alessandro Zummo <a.zummo@towerteh.it>"); +MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");  MODULE_DESCRIPTION("RTC class support");  MODULE_LICENSE("GPL"); diff --git a/drivers/rtc/rtc-dev.c b/drivers/rtc/rtc-dev.c index 062c0ab3fe3..629d47cc7e8 100644 --- a/drivers/rtc/rtc-dev.c +++ b/drivers/rtc/rtc-dev.c @@ -495,7 +495,7 @@ static void __exit rtc_dev_exit(void)  	unregister_chrdev_region(rtc_devt, RTC_DEV_MAX);  } -module_init(rtc_dev_init); +subsys_initcall(rtc_dev_init);  module_exit(rtc_dev_exit);  MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); diff --git a/drivers/rtc/rtc-proc.c b/drivers/rtc/rtc-proc.c index cef5f5a3bbf..1b2c2caa2a9 100644 --- a/drivers/rtc/rtc-proc.c +++ b/drivers/rtc/rtc-proc.c @@ -156,7 +156,7 @@ static void __exit rtc_proc_exit(void)  	class_interface_unregister(&rtc_proc_interface);  } -module_init(rtc_proc_init); +subsys_initcall(rtc_proc_init);  module_exit(rtc_proc_exit);  MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); diff --git a/drivers/rtc/rtc-sysfs.c b/drivers/rtc/rtc-sysfs.c index 7c1f3d2e53c..6f8370e88a7 100644 --- a/drivers/rtc/rtc-sysfs.c +++ b/drivers/rtc/rtc-sysfs.c @@ -116,7 +116,7 @@ static void __exit rtc_sysfs_exit(void)  	class_interface_unregister(&rtc_sysfs_interface);  } -module_init(rtc_sysfs_init); +subsys_init(rtc_sysfs_init);  module_exit(rtc_sysfs_exit);  MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");  |