diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-04-28 05:11:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:16 -0400 |
commit | c464652813fe128c346ce6e7ec8fb0d2b67de6fb (patch) | |
tree | dfa63e2029c6d7eaa8b95dae1319db7f62a754fc /drivers/rtc/rtc-test.c | |
parent | 4edac2b442d6176afb0ae431123993dc00882987 (diff) |
rtc: silence section mismatch warning in rtc-test
Fix following warning:
WARNING: vmlinux.o(.data+0x253e28): Section mismatch in reference from the variable test_drv to the function .devexit.text:test_remove()
Fix by renaming the platfrom_driver variable from *_drv to *_driver
so modpost ignore the reference to an __devexit section.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-test.c')
-rw-r--r-- | drivers/rtc/rtc-test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/rtc/rtc-test.c b/drivers/rtc/rtc-test.c index 254c9fce27da..bc930022004a 100644 --- a/drivers/rtc/rtc-test.c +++ b/drivers/rtc/rtc-test.c | |||
@@ -147,7 +147,7 @@ static int __devexit test_remove(struct platform_device *plat_dev) | |||
147 | return 0; | 147 | return 0; |
148 | } | 148 | } |
149 | 149 | ||
150 | static struct platform_driver test_drv = { | 150 | static struct platform_driver test_driver = { |
151 | .probe = test_probe, | 151 | .probe = test_probe, |
152 | .remove = __devexit_p(test_remove), | 152 | .remove = __devexit_p(test_remove), |
153 | .driver = { | 153 | .driver = { |
@@ -160,7 +160,7 @@ static int __init test_init(void) | |||
160 | { | 160 | { |
161 | int err; | 161 | int err; |
162 | 162 | ||
163 | if ((err = platform_driver_register(&test_drv))) | 163 | if ((err = platform_driver_register(&test_driver))) |
164 | return err; | 164 | return err; |
165 | 165 | ||
166 | if ((test0 = platform_device_alloc("rtc-test", 0)) == NULL) { | 166 | if ((test0 = platform_device_alloc("rtc-test", 0)) == NULL) { |
@@ -191,7 +191,7 @@ exit_free_test0: | |||
191 | platform_device_put(test0); | 191 | platform_device_put(test0); |
192 | 192 | ||
193 | exit_driver_unregister: | 193 | exit_driver_unregister: |
194 | platform_driver_unregister(&test_drv); | 194 | platform_driver_unregister(&test_driver); |
195 | return err; | 195 | return err; |
196 | } | 196 | } |
197 | 197 | ||
@@ -199,7 +199,7 @@ static void __exit test_exit(void) | |||
199 | { | 199 | { |
200 | platform_device_unregister(test0); | 200 | platform_device_unregister(test0); |
201 | platform_device_unregister(test1); | 201 | platform_device_unregister(test1); |
202 | platform_driver_unregister(&test_drv); | 202 | platform_driver_unregister(&test_driver); |
203 | } | 203 | } |
204 | 204 | ||
205 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | 205 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); |