Skip to content

Commit

Permalink
[PATCH] x86-64: Fix preprocessor condition
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Josef 'Jeff' Sipek authored and Andi Kleen committed Feb 13, 2007
1 parent ad4e680 commit b0957f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-x86_64/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit b0957f1

Please sign in to comment.