[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080307192626.4673455b@paolo-desktop>
Date: Fri, 7 Mar 2008 19:26:26 +0100
From: Paolo Ciarrocchi <paolo.ciarrocchi@...il.com>
To: hpa <hpa@...or.com>, Ingo Molnar <mingo@...e.hu>,
tglx <tglx@...utronix.de>
Cc: Linux Kernel <linux-kernel@...r.kernel.org>
Subject: [PATCH 2/2] x86: coding style fixes to arch/x86/kernel/setup_32.c
Fix one:
ERROR: do not initialise externals to 0 or NULL
The change affects the generated binary file:
paolo@...lo-desktop:/tmp/a$ size setup_32.o*
text data bss dec hex filename
3526 7406 885 11817 2e29 setup_32.o
3526 7406 885 11817 2e29 setup_32.o.after
3526 7410 885 11821 2e2d setup_32.o.after.initialise
paolo@...lo-desktop:/tmp/a$ md5sum setup_32.o*
d238f977facb3b4e4ee6a18390678376 setup_32.o
d238f977facb3b4e4ee6a18390678376 setup_32.o.after
1c43448c2f50d22215857741ffe5eca5 setup_32.o.after.initialise
Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@...il.com>
---
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 b120a1c..029354b 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.
--
1.5.4.2.316.gf7a7
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists