[PATCH] Make boot_param_data pure BSS
Since it's all zero. Actually I think gcc 4+ will do that automatically, but earlier compilers won't Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
parent
1edf777803
commit
2717941c6a
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
|||
#include <asm/proto.h>
|
||||
#include <asm/sections.h>
|
||||
|
||||
char x86_boot_params[BOOT_PARAM_SIZE] __initdata = {0,};
|
||||
char x86_boot_params[BOOT_PARAM_SIZE] __initdata;
|
||||
|
||||
cpumask_t cpu_initialized __cpuinitdata = CPU_MASK_NONE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue