diff options
author | Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> | 2008-03-07 19:26:26 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 17:40:58 +0200 |
commit | 537d916066f66de18dbca79adf82933cd12d2a36 (patch) | |
tree | 5435566db1282f0e368c96d0d0f5236bf5e32541 /arch/x86 | |
parent | 9a79cf9c1aa671325fa5ba37576c2cee23823d04 (diff) |
x86: coding style fixes to arch/x86/kernel/setup_32.c
Fix:
ERROR: do not initialise externals to 0 or NULL
Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/setup_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/setup_32.c b/arch/x86/kernel/setup_32.c index fd639d9f79b..d4ad6e8ae88 100644 --- a/arch/x86/kernel/setup_32.c +++ b/arch/x86/kernel/setup_32.c @@ -228,7 +228,7 @@ static inline void copy_edd(void) } #endif -int __initdata user_defined_memmap = 0; +int __initdata user_defined_memmap; /* * "mem=nopentium" disables the 4MB page tables. |