diff options
author | Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu> | 2007-02-13 13:26:23 +0100 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2007-02-13 13:26:23 +0100 |
commit | b0957f1a3a7687bfaf5b0bfe402b50985ea2f06b (patch) | |
tree | 70ad886b55e0d9f1cb07c4af99eba1dc85c78474 /include/asm-x86_64/io.h | |
parent | ad4e680fb2220518de5118a8e734240d4c374fe2 (diff) |
[PATCH] x86-64: Fix preprocessor condition
Old code was legal standard C, but apparently not sparse-C.
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'include/asm-x86_64/io.h')
-rw-r--r-- | 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 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 <linux/vmalloc.h> |