more 2.6 compatibility
authorFrank Mori Hess <fmhess@speakeasy.net>
Mon, 4 Aug 2003 01:06:40 +0000 (01:06 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Mon, 4 Aug 2003 01:06:40 +0000 (01:06 +0000)
include/asm/pgtable.h [new file with mode: 0644]
include/linux/comedidev.h
include/linux/devfs_fs_kernel.h
include/linux/interrupt.h [new file with mode: 0644]
include/linux/module.h
include/linux/pci.h
include/linux/wrapper.h [new file with mode: 0644]

diff --git a/include/asm/pgtable.h b/include/asm/pgtable.h
new file mode 100644 (file)
index 0000000..84017b2
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+    asm/pgtable.h compatibility header
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef __COMPAT_ASM_PGTABLE_H_
+#define __COMPAT_ASM_PGTABLE_H_
+
+#include <linux/version.h>
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
+
+#define pte_offset_kernel(dir,address) pte_offset(dir,address)
+
+#endif
+
+#include_next <asm/pgtable.h>
+
+#endif /* __COMPAT_ASM_PGTABLE_H_ */
+
index 1ebd1ad60ac6d9d586df0830843fc7eb0f3e16d0..ee4b2b13018bf1ef9debd49f92aabb40d2296c2d 100644 (file)
@@ -37,6 +37,7 @@
 #include <linux/init.h>
 #include <linux/vmalloc.h>
 #include <linux/mm.h>
+#include <linux/interrupt.h>
 
 #include <asm/uaccess.h>
 #include <asm/io.h>
index 54ad13efd700620be05adccfce5733abae3768db..b3fe6e3c8cedf235c07dd931b302758b1c3f1e14 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/version.h>
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 2, 18)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 2, 18) || LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)
 
 #define DEVFS_FL_DEFAULT 0
 #define DEVFS_SPECIAL_CHR 0
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
new file mode 100644 (file)
index 0000000..8daf83c
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+    linux/interrupt.h compatibility header
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef __COMPAT_LINUX_INTERRUPT_H_
+#define __COMPAT_LINUX_INTERRUPT_H_
+
+#include <linux/version.h>
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0)
+typedef void irqreturn_t;
+#define IRQ_NONE
+#define IRQ_HANDLED
+#define IRQ_RETVAL(x)
+#endif
+
+#include_next <linux/interrupt.h>
+
+#endif
+
index 51693371d3dcc4ada7bee68ddf7f9e1601875a39..308de36b8610a13ab80d5f5f9c31376cd782c21c 100644 (file)
@@ -7,6 +7,12 @@
 
 #include <linux/version.h>
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
+#define __MOD_INC_USE_COUNT(x)
+#define __MOD_DEC_USE_COUNT(x)
+#define MOD_IN_USE (0)
+#endif
+
 #if LINUX_VERSION_CODE < 0x020115
 #define MODULE_AUTHOR(a)
 #define MODULE_DESCRIPTION(a)
index efe742d80bdfdd770040f1cc518f72c2d4822fdf..bbf1d33a5c5b1371fd0966c0b7bf3abf7c502aaa 100644 (file)
 #include_next <linux/pci.h>
 #define PCI_SUPPORT_VER2
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
+/* we should get rid of this, as it has been dropped from 2.6 */
+#define pci_for_each_dev(x)    \
+       for((x) = pci_dev_g(pci_devices.next), prefetch((x)->global_list.next); \
+               x->global_list.next != &pci_devices; (x) = pci_dev_g((x)->global_list.next), \
+               prefetch((x)->global_list.next))
+#endif
+
 #if LINUX_VERSION_CODE < 0x020300 /* XXX */
 
 #define pci_for_each_dev(x)    \
diff --git a/include/linux/wrapper.h b/include/linux/wrapper.h
new file mode 100644 (file)
index 0000000..235d107
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+    linux/wrapper.h compatibility header
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef __COMPAT_LINUX_WRAPPER_H_
+#define __COMPAT_LINUX_WRAPPER_H_
+
+#include <linux/version.h>
+
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
+#define mem_map_reserve(p)      set_bit(PG_reserved, &((p)->flags))
+#define mem_map_unreserve(p)    clear_bit(PG_reserved, &((p)->flags))
+#else
+#include_next <linux/wrapper.h>
+#endif
+
+#endif /* __COMPAT_LINUX_WRAPPER_H_ */
+