From: Josef 'Jeff' Sipek Date: Tue, 13 Feb 2007 12:26:23 +0000 (+0100) Subject: [PATCH] x86-64: Fix preprocessor condition X-Git-Tag: v2.6.21-rc1~184^2~40 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=b0957f1a3a7687bfaf5b0bfe402b50985ea2f06b;p=linux-2.6-omap-h63xx.git [PATCH] x86-64: Fix preprocessor condition Old code was legal standard C, but apparently not sparse-C. Signed-off-by: Josef 'Jeff' Sipek Signed-off-by: Andi Kleen --- diff --git a/include/asm-x86_64/io.h b/include/asm-x86_64/io.h index f5d84bb7c94..de2cd9a2303 100644 --- a/include/asm-x86_64/io.h +++ b/include/asm-x86_64/io.h @@ -100,7 +100,7 @@ __OUTS(l) #define IO_SPACE_LIMIT 0xffff -#if defined(__KERNEL__) && __x86_64__ +#if defined(__KERNEL__) && defined(__x86_64__) #include