From: Frederik Deweerdt Date: Sun, 30 Jul 2006 10:03:46 +0000 (-0700) Subject: [PATCH] mdacon: fix __init section warnings X-Git-Tag: v2.6.18-rc4~112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ca7b5c42e783b74a57387418bfcfea072fc46d6;p=profile%2Fivi%2Fkernel-x86-ivi.git [PATCH] mdacon: fix __init section warnings WARNING: drivers/video/console/mdacon.o - Section mismatch: reference to .init.text: from .text between 'mdacon_startup' (at offset 0x123) and 'mdacon_init' WARNING: drivers/video/console/mdacon.o - Section mismatch: reference to .init.text: from .text between 'mdacon_startup' (at offset 0x18b) and 'mdacon_init' Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/console/mdacon.c b/drivers/video/console/mdacon.c index 52ed12b..eb4d03f 100644 --- a/drivers/video/console/mdacon.c +++ b/drivers/video/console/mdacon.c @@ -197,7 +197,7 @@ static int __init mdacon_setup(char *str) __setup("mdacon=", mdacon_setup); #endif -static int __init mda_detect(void) +static int mda_detect(void) { int count=0; u16 *p, p_save; @@ -282,7 +282,7 @@ static int __init mda_detect(void) return 1; } -static void __init mda_initialize(void) +static void mda_initialize(void) { write_mda_b(97, 0x00); /* horizontal total */ write_mda_b(80, 0x01); /* horizontal displayed */