mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 02:47:31 -04:00
[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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user