replace all hex codes with KERNEL_VERSION() for clairity
authorFrank Mori Hess <fmhess@speakeasy.net>
Tue, 5 Aug 2003 18:28:20 +0000 (18:28 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Tue, 5 Aug 2003 18:28:20 +0000 (18:28 +0000)
15 files changed:
include/asm/dma.h
include/linux/fs.h
include/linux/init.h
include/linux/irq.h
include/linux/isapnp.h
include/linux/kmod.h
include/linux/mm.h
include/linux/module.h
include/linux/pci.h
include/linux/poll.h
include/linux/sched.h
include/linux/slab.h
include/linux/spinlock.h
include/linux/timer.h
include/linux/vmalloc.h

index 60abc156ea0fbf4ef45b74c3d219e1fb61363f3e..551af45447a3b563d2591d3066c878c03a6f8928 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 #include <asm/system.h>
 static __inline__ unsigned long claim_dma_lock(void)
 {
index 34739107095aaae2e4ff702720ea0c7205fafff3..d75090a5d8468066c22b723afecf3161c9eeee94 100644 (file)
@@ -7,11 +7,11 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 /* no fasync */
 #define KILL_FASYNC(a,b,c)
 #else
-#if LINUX_VERSION_CODE < 0x020400
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)
 #define KILL_FASYNC(a,b,c)     kill_fasync((a),(c))
 #else
 #define KILL_FASYNC(a,b,c)     kill_fasync(&(a),(b),(c))
index 52533737adba549bbcab9cfc7ee91d3685f2c509..b57dc865c79eba191e77ab243e3008fc4b915c6f 100644 (file)
@@ -7,11 +7,11 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020400
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)
 #define __devinitdata __initdata
 #define __exit
 #endif
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 #define __init
 #else
 #include_next <linux/init.h>
index da00639999fb7117e194028f7702ae52d43fff3a..c68fb28d71791db516d7c7a81ed4cb3beeb97344 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020300
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0)
 #include <asm/irq.h>
 #else
 #include_next <linux/irq.h>
index 63adcf1adcd9c960ec8c0ebd4ff612db7c47042e..db1dd68cad1c3cc42182d3699a6d73f310130be1 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE >= 0x020300
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,0)
 #include_next <linux/isapnp.h>
 #else
 #include <linux/pci.h>
index f356b8fc9a81e56351acd40ad44ec99e5c3dc842..e8862e957d63e826986b1f45d4a6a02337e731c3 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 
 #else
 #include_next <linux/kmod.h>
index c888e98682142dc9ef65755309f9d316d36369b9..a7ab7ce9c7cd65b209613a8a2f035d8e87064ed5 100644 (file)
@@ -7,14 +7,14 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020300
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0)
 #define VM_OFFSET(a)   ((a)->vm_offset)
 #define page_address(page) page
 #else
 #define VM_OFFSET(a)   ((a)->vm_pgoff * PAGE_SIZE)
 #endif
 
-#if LINUX_VERSION_CODE < 0x020500
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
 #define REMAP_PAGE_RANGE(a,b,c,d,e) remap_page_range(b,c,d,e)
 #else
 #define REMAP_PAGE_RANGE(a,b,c,d,e) remap_page_range(a,b,c,d,e)
index e84413fe6dc25e0f144289f23d63cce5551146ff..7f7c8ee72ae7f45a621ad839c8a90854256217b6 100644 (file)
@@ -8,7 +8,7 @@
 #include <linux/version.h>
 
 
-#if LINUX_VERSION_CODE < 0x020115
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,19)
 #define MODULE_AUTHOR(a)
 #define MODULE_DESCRIPTION(a)
 #define MODULE_PARM(a,b)
index 2517fdffdf00042d19474d3bcff5b9d19f963804..a71891bcd80ecf624c3c2e30933462072133c1fa 100644 (file)
@@ -8,7 +8,7 @@
 #include <linux/version.h>
 
 
-#if LINUX_VERSION_CODE < 0x020155
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,55)
 #include <linux/bios32.h>
 #define PCI_SUPPORT_VER1
 #else
index bafeb0a24de1946380ae988e9dd496818cd27b99..7f2bf9b397a3a051bdf12a142e9dea85fb4beace 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 
 #else
 #include_next <linux/poll.h>
index e679a2511189800fb9ab88b837c4b2493d4f018e..753d54f7a751513924088ccaf0137ca2f2b95666 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 #define signal_pending(x)      (((x)->signal) & (~(x)->blocked))
 #endif
 
index 8010435c75f610529b2d18fb62bfa3cf70c2fb89..8f0befce5054b881f5189772970eec1438d43cad 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 #include <linux/malloc.h>
 #else
 #include_next <linux/slab.h>
index 8588796a1c7f24066f6ec4f9c5e20aa4a7758ad6..4c3e6503bed64bed71af6c371a3d73e4db13443d 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020100
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,1,0)
 /* no spinlocks */
 typedef int spinlock_t;
 
@@ -27,7 +27,7 @@ typedef int spinlock_t;
 #define SPIN_LOCK_UNLOCKED 0
 
 #else
-#if LINUX_VERSION_CODE < 0x020300
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0)
 #include <asm/spinlock.h>
 #else
 #include_next <linux/spinlock.h>
index 2b0f113b6349acebff6aea6e97818ff56348634a..e32f0503bf849065e3e7a7682d4f5220319c6f6b 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 
 #define mod_timer(a,b) do{del_timer((a));(a)->expires=(b);add_timer((a));}while(0)
 #endif
index 7811990e0ad348d51105b61df8002e035df23bad..bbc3c7c3e214e4aab93e8da2d6ad4aa6bacba249 100644 (file)
@@ -8,7 +8,7 @@
 #include <linux/version.h>
 
 
-#if LINUX_VERSION_CODE < 0x020200
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
 
 #else
 #include_next <linux/vmalloc.h>