From: Josef 'Jeff' Sipek Date: Tue, 13 Feb 2007 12:26:23 +0000 (+0100) Subject: [PATCH] x86-64: Fix preprocessor condition X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b0957f1a3a7687bfaf5b0bfe402b50985ea2f06b;p=linux-beck.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 f5d84bb7c948..de2cd9a2303a 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