diff options
author | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2008-01-15 09:46:59 +0100 |
---|---|---|
committer | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2008-01-15 09:47:04 +0100 |
commit | 099e89edf094ec231621b67129e9226ba50e99ad (patch) | |
tree | 993235692ffeb1b4a7d32d6635d3a850e12766e6 | |
parent | 806c1929dcd344f6eab3133584a9c4ce9f3f47bc (diff) |
Define i915_compat.c upper_32_bits for kernels < 2.6.21
-rw-r--r-- | linux-core/i915_compat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-core/i915_compat.c b/linux-core/i915_compat.c index f77260b1..cc024085 100644 --- a/linux-core/i915_compat.c +++ b/linux-core/i915_compat.c @@ -19,6 +19,10 @@ #define I915_IFPADDR 0x60 #define I965_IFPADDR 0x70 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21) +#define upper_32_bits(_val) (((u64)(_val)) >> 32) +#endif + static struct _i9xx_private_compat { void __iomem *flush_page; int resource_valid; |