xref: /openbmc/linux/arch/x86/kernel/head32.c (revision 700efc1b)
1 /*
2  *  linux/arch/i386/kernel/head32.c -- prepare to run common code
3  *
4  *  Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5  *  Copyright (C) 2007 Eric Biederman <ebiederm@xmission.com>
6  */
7 
8 #include <linux/init.h>
9 #include <linux/start_kernel.h>
10 
11 void __init i386_start_kernel(void)
12 {
13 	start_kernel();
14 }
15