Re: [PATCH] x86_64: Fix preprocessor condition

2007-01-31 Thread Josef Sipek
On Wed, Jan 31, 2007 at 06:16:02PM +0100, Andi Kleen wrote: > > > -#if defined(__KERNEL__) && __x86_64__ > > +#if defined(__KERNEL__) && defined(__x86_64__) > > Undefined symbols are replaced with 0, so the old line was already ok. Fair enough, however sparse is not very happy about underfined s

Re: [PATCH] x86_64: Fix preprocessor condition

2007-01-31 Thread Andi Kleen
> -#if defined(__KERNEL__) && __x86_64__ > +#if defined(__KERNEL__) && defined(__x86_64__) Undefined symbols are replaced with 0, so the old line was already ok. -Andi - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED]

[PATCH] x86_64: Fix preprocessor condition

2007-01-31 Thread Josef 'Jeff' Sipek
Signed-off-by: Josef 'Jeff' Sipek <[EMAIL PROTECTED]> --- include/asm-x86_64/io.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/asm-x86_64/io.h b/include/asm-x86_64/io.h index 6ee9fad..7d0b568 100644 --- a/include/asm-x86_64/io.h +++ b/include/asm-x86_64/io.h @@

[PATCH] x86_64: Fix preprocessor condition

2007-01-16 Thread Josef 'Jeff' Sipek
Signed-off-by: Josef 'Jeff' Sipek <[EMAIL PROTECTED]> --- include/asm-x86_64/io.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/asm-x86_64/io.h b/include/asm-x86_64/io.h index 6ee9fad..7d0b568 100644 --- a/include/asm-x86_64/io.h +++ b/include/asm-x86_64/io.h @@