public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix a compile warning in arch/x86/mm/init_64.c
@ 2008-07-09 22:52 Hans J. Koch
  2008-07-18 17:26 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Hans J. Koch @ 2008-07-09 22:52 UTC (permalink / raw)
  To: LKML; +Cc: Thomas Gleixner, Ingo Molnar

This fixes a minor compile warning in arch/x86/mm/init_64.c about passing a
wrong pointer type as argument 2 to find_e820_area_size().
Tested with 2.6.26-rc9.

Signed-of-by: Hans J. Koch <hjk@linutronix.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>

---
 arch/x86/mm/init_64.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.26-rc/arch/x86/mm/init_64.c
===================================================================
--- linux-2.6.26-rc.orig/arch/x86/mm/init_64.c	2008-07-10 00:18:52.000000000 +0200
+++ linux-2.6.26-rc/arch/x86/mm/init_64.c	2008-07-10 00:25:43.000000000 +0200
@@ -506,7 +506,7 @@
 
 static void __init early_memtest(unsigned long start, unsigned long end)
 {
-	u64 t_start, t_size;
+	unsigned long t_start, t_size;
 	unsigned pattern;
 
 	if (!memtest_pattern)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-07-18 17:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-09 22:52 [PATCH] Fix a compile warning in arch/x86/mm/init_64.c Hans J. Koch
2008-07-18 17:26 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox