diff options
author | David Brownell <david-b@pacbell.net> | 2006-10-01 02:28:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:25 -0400 |
commit | 818a8674b0388d90e33a5d1b13946b40dda7032a (patch) | |
tree | 8972d170496e416170fcc0c82bcb634118392e78 /drivers/rtc/class.c | |
parent | 9e86ecb659f11b36b5e189214b19cb31ef5dfd72 (diff) |
[PATCH] RTC class uses subsys_init
This makes RTC core components use "subsys_init" instead of "module_init", as
appropriate for subsystem infrastructure. This is mostly useful for
statically linking drivers in other parts of the tree that may provide an RTC
interface as a secondary functionality (e.g. part of a multifunction chip);
they won't need to worry so much about drivers/Makefile link order.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Acked-by: Oleg Verych <olecom@flower.upol.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/rtc/class.c')
-rw-r--r-- | drivers/rtc/class.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c index 1cb61a761cb2..306d600a764a 100644 --- a/drivers/rtc/class.c +++ b/drivers/rtc/class.c | |||
@@ -142,9 +142,9 @@ static void __exit rtc_exit(void) | |||
142 | class_destroy(rtc_class); | 142 | class_destroy(rtc_class); |
143 | } | 143 | } |
144 | 144 | ||
145 | module_init(rtc_init); | 145 | subsys_initcall(rtc_init); |
146 | module_exit(rtc_exit); | 146 | module_exit(rtc_exit); |
147 | 147 | ||
148 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towerteh.it>"); | 148 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); |
149 | MODULE_DESCRIPTION("RTC class support"); | 149 | MODULE_DESCRIPTION("RTC class support"); |
150 | MODULE_LICENSE("GPL"); | 150 | MODULE_LICENSE("GPL"); |