All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jerone Young <jyoung5@us.ibm.com>
To: xen-devel <xen-devel@lists.sourceforge.net>
Subject: [PATCH] misspelled if def in xen/arch/timer.c
Date: Fri, 25 Mar 2005 14:36:00 -0600	[thread overview]
Message-ID: <1111782961.11028.14.camel@thinkpad> (raw)

[-- 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;

                 reply	other threads:[~2005-03-25 20:36 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1111782961.11028.14.camel@thinkpad \
    --to=jyoung5@us.ibm.com \
    --cc=xen-devel@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.