[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20071105170805.GC12045@stusta.de>
Date: Mon, 5 Nov 2007 18:08:05 +0100
From: Adrian Bunk <bunk@...nel.org>
To: adaplas@...il.com
Cc: linux-kernel@...r.kernel.org
Subject: [2.6 patch] video/hpfb.c section fix
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@...nel.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;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists