* [PATCH] misspelled if def in xen/arch/timer.c
@ 2005-03-25 20:36 Jerone Young
0 siblings, 0 replies; only message in thread
From: Jerone Young @ 2005-03-25 20:36 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 247 bytes --]
I was walking through the code and noticed that the macro around an
error check that was not correctly defined...it was "_i386__", should be
"__i386__".
--
Jerone Young
IBM Linux Technology Center
jyoung5@us.ibm.com
512-838-1157 (T/L: 678-1157)
[-- Attachment #2: time_if_def_misspell.diff --]
[-- Type: text/x-patch, Size: 414 bytes --]
--- xen-unstable/xen/arch/x86/time.c 2005-03-24 22:16:27.000000000 -0600
+++ xen-unstable.work/xen/arch/x86/time.c 2005-03-25 14:21:03.000000000 -0600
@@ -135,7 +135,7 @@ static unsigned long __init calibrate_ts
diff = end - start;
-#if defined(_i386__)
+#if defined(__i386__)
/* If quotient doesn't fit in 32 bits then we return error (zero). */
if ( diff & ~0xffffffffULL )
return 0;
[-- Attachment #3: time_if_def_misspell.diff --]
[-- Type: text/x-patch, Size: 414 bytes --]
--- xen-unstable/xen/arch/x86/time.c 2005-03-24 22:16:27.000000000 -0600
+++ xen-unstable.work/xen/arch/x86/time.c 2005-03-25 14:21:03.000000000 -0600
@@ -135,7 +135,7 @@ static unsigned long __init calibrate_ts
diff = end - start;
-#if defined(_i386__)
+#if defined(__i386__)
/* If quotient doesn't fit in 32 bits then we return error (zero). */
if ( diff & ~0xffffffffULL )
return 0;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-03-25 20:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-25 20:36 [PATCH] misspelled if def in xen/arch/timer.c Jerone Young
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.