diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-21 07:38:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-21 20:49:17 -0400 |
commit | 7cc90249ff0e21c526532ce5b5ba35c07c8b8389 (patch) | |
tree | 95f0357e297771d180f2fe66d0b4002bffdea304 | |
parent | 250a269da4e2afe815aeef97c3b115fbda4440ac (diff) |
rivafb_setup() must be __devinit
WARNING: drivers/built-in.o(.text+0x57106): Section mismatch: reference to .init.text:rivafb_setup (between 'rivafb_init' and 'nv3Busy')
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/video/riva/fbdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/riva/fbdev.c b/drivers/video/riva/fbdev.c index 0fe547842c64..41381e61832c 100644 --- a/drivers/video/riva/fbdev.c +++ b/drivers/video/riva/fbdev.c | |||
@@ -2146,7 +2146,7 @@ static void __devexit rivafb_remove(struct pci_dev *pd) | |||
2146 | * ------------------------------------------------------------------------- */ | 2146 | * ------------------------------------------------------------------------- */ |
2147 | 2147 | ||
2148 | #ifndef MODULE | 2148 | #ifndef MODULE |
2149 | static int __init rivafb_setup(char *options) | 2149 | static int __devinit rivafb_setup(char *options) |
2150 | { | 2150 | { |
2151 | char *this_opt; | 2151 | char *this_opt; |
2152 | 2152 | ||