aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2008-07-17 05:21:14 -0700
committerLuis R. Rodriguez <lrodriguez@atheros.com>2008-07-17 05:21:14 -0700
commit61626dc08f6b641decf04cfc4a643a8e7a7d9f6f (patch)
tree5c9b9ee358a0d4bae80d5f6ffbaa520b57cae8b2
parent37beb01986d3c7a2c9a2aeda2fa2ebc7790d180e (diff)
downloadcompat-wireless-2.6-old-61626dc08f6b641decf04cfc4a643a8e7a7d9f6f.tar.gz
Fix typo in compat.h, uintptr_t was *added* on 2.6.24.
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
-rw-r--r--Makefile2
-rw-r--r--compat/compat.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b556fea..11566d2 100644
--- a/Makefile
+++ b/Makefile
@@ -196,4 +196,4 @@ load: unload
endif
-clean-files += Module.symvers $(CREL_CHECK) $(CONFIG_CHECK)
+clean-files += Module.symvers modules.order $(CREL_CHECK) $(CONFIG_CHECK)
diff --git a/compat/compat.h b/compat/compat.h
index 82f60a2..ec50750 100644
--- a/compat/compat.h
+++ b/compat/compat.h
@@ -438,7 +438,7 @@ static inline void set_freezable(void) {}
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25))
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24))
/* Added on 2.6.24 in include/linux/types.h by Al viro on commit 142956af */
typedef unsigned long uintptr_t;
#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)) */