From: Adrian Bunk Date: Sat, 25 Mar 2006 11:07:39 +0000 (-0800) Subject: [PATCH] add a proper prototype for setup_arch() X-Git-Tag: v3.12-rc1~37616 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77d47582c2345e071df02afaf9191641009287c4;p=kernel%2Fkernel-generic.git [PATCH] add a proper prototype for setup_arch() This patch adds a proper prototype for setup_arch() in init.h. This patch is based on a patch by Ben Dooks . Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/init.h b/include/linux/init.h index ff8d8b8..ed0ac7c 100644 --- a/include/linux/init.h +++ b/include/linux/init.h @@ -69,6 +69,10 @@ extern initcall_t __security_initcall_start[], __security_initcall_end[]; /* Defined in init/main.c */ extern char saved_command_line[]; + +/* used by init/main.c */ +extern void setup_arch(char **); + #endif #ifndef MODULE diff --git a/init/main.c b/init/main.c index a596cb8..006dcd5 100644 --- a/init/main.c +++ b/init/main.c @@ -306,8 +306,6 @@ static int __init rdinit_setup(char *str) } __setup("rdinit=", rdinit_setup); -extern void setup_arch(char **); - #ifndef CONFIG_SMP #ifdef CONFIG_X86_LOCAL_APIC