* [2.6 patch] video/hpfb.c section fix
@ 2007-11-05 17:08 Adrian Bunk
0 siblings, 0 replies; only message in thread
From: Adrian Bunk @ 2007-11-05 17:08 UTC (permalink / raw)
To: adaplas; +Cc: linux-kernel
hpfb_init_one() must be __devinit since it's called by the __devinit
hpfb_dio_probe().
This patch fixes the following section mismatch:
<-- snip -->
...
WARNING: vmlinux.o(.text+0xb851a): Section mismatch: reference to .init.text:hpfb_init_one (between 'hpfb_dio_probe' and 'read_null')
...
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@kernel.org>
---
bc14fc19ee08ed77903c69901368dfd3503156ce
diff --git a/drivers/video/hpfb.c b/drivers/video/hpfb.c
index b18486a..2eb4fb1 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;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-11-05 17:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-05 17:08 [2.6 patch] video/hpfb.c section fix Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox