diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-06 01:39:06 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-06 10:41:15 -0800 |
commit | 5a1c84f1465a90192f55e21ccc67fd396c596374 (patch) | |
tree | da76cdd2df036f7d7d613cd7a0ccca14e1c59b61 /drivers/video/hpfb.c | |
parent | cfe2f714d9ebca9d17f392de1fa656d77aa2d4f1 (diff) | |
download | linux-3.10-5a1c84f1465a90192f55e21ccc67fd396c596374.tar.gz linux-3.10-5a1c84f1465a90192f55e21ccc67fd396c596374.tar.bz2 linux-3.10-5a1c84f1465a90192f55e21ccc67fd396c596374.zip |
video/hpfb.c section fix
WARNING: vmlinux.o(.text+0xb851a): Section mismatch: reference to .init.text:hpfb_init_one (between 'hpfb_dio_probe' and 'read_null')
hpfb_init_one() must be __devinit since it's called by the __devinit
hpfb_dio_probe().
Signed-off-by: Adrian Bunk <bunk@kernel.org>
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>
Diffstat (limited to 'drivers/video/hpfb.c')
-rw-r--r-- | drivers/video/hpfb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/hpfb.c b/drivers/video/hpfb.c index b18486ad8e1..2eb4fb15908 100644 --- a/drivers/video/hpfb.c +++ b/drivers/video/hpfb.c @@ -207,7 +207,8 @@ static struct fb_ops hpfb_ops = { #define HPFB_FBOMSB 0x5d /* Frame buffer offset */ #define HPFB_FBOLSB 0x5f -static int __init hpfb_init_one(unsigned long phys_base, unsigned long virt_base) +static int __devinit hpfb_init_one(unsigned long phys_base, + unsigned long virt_base) { unsigned long fboff, fb_width, fb_height, fb_start; |