[PATCH] abandon gcc 295x main.c tidy

After abandon-gcc-295x.patch, this relocates the error-out-early comment.

Signed-off-by: Coywolf Qi Hunt <qiyong@fc-cn.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Coywolf Qi Hunt and committed by Linus Torvalds 69c99ac1 31358063

+7 -9
+7 -9
init/main.c
··· 54 54 #include <asm/sections.h> 55 55 #include <asm/cacheflush.h> 56 56 57 - /* 58 - * This is one of the first .c files built. Error out early 59 - * if we have compiler trouble.. 60 - */ 61 - 62 57 #ifdef CONFIG_X86_LOCAL_APIC 63 58 #include <asm/smp.h> 64 59 #endif 65 60 66 61 /* 67 - * Versions of gcc older than that listed below may actually compile 68 - * and link okay, but the end product can have subtle run time bugs. 69 - * To avoid associated bogus bug reports, we flatly refuse to compile 70 - * with a gcc that is known to be too old from the very beginning. 62 + * This is one of the first .c files built. Error out early if we have compiler 63 + * trouble. 64 + * 65 + * Versions of gcc older than that listed below may actually compile and link 66 + * okay, but the end product can have subtle run time bugs. To avoid associated 67 + * bogus bug reports, we flatly refuse to compile with a gcc that is known to be 68 + * too old from the very beginning. 71 69 */ 72 70 #if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 2) 73 71 #error Sorry, your GCC is too old. It builds incorrect kernels.