diff options
author | Adam Jackson <ajax@redhat.com> | 2009-07-16 10:51:27 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-07-17 15:03:56 -0400 |
commit | 892c93553aa0b03aeb3f4c27d952cc4bb7120aff (patch) | |
tree | 5a0d2d971a4f06b8304f9423c41fd6be183ac971 /hw/xfree86 | |
parent | e5712f2926abf33b146a4ccfcf6e89c914dad37b (diff) |
fbdevhw: Remove a #if 0
Diffstat (limited to 'hw/xfree86')
-rw-r--r-- | hw/xfree86/fbdevhw/fbdevhw.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/hw/xfree86/fbdevhw/fbdevhw.c b/hw/xfree86/fbdevhw/fbdevhw.c index e8630152d..213b24630 100644 --- a/hw/xfree86/fbdevhw/fbdevhw.c +++ b/hw/xfree86/fbdevhw/fbdevhw.c @@ -17,12 +17,7 @@ #include "fbdevhw.h" #include "fbpriv.h" -#if 0 -/* kernel header doesn't work with -ansi */ -# include "asm/page.h" /* #define for PAGE_* */ -#else -# define PAGE_MASK (~(getpagesize() - 1)) -#endif +#define PAGE_MASK (~(getpagesize() - 1)) #include "globals.h" #include <X11/extensions/dpmsconst.h> |