Add stuff for 2.6.24 support, more items are missing
authorLuis R. Rodriguez <lrodriguez@atheros.com>
Thu, 9 Jul 2009 01:30:38 +0000 (18:30 -0700)
committerLuis R. Rodriguez <lrodriguez@atheros.com>
Thu, 9 Jul 2009 01:30:38 +0000 (18:30 -0700)
linux/gpio.h is not available on older kernels, we'll just have to
disable all drivers which use that. After that we need to port
__dev_addr_unsync() and friends. Not sure what is after that.

Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
compat/compat-2.6.25.h

index 6562b31018e08565493fe5b9a364d7ffee965701..4643bf1a0434f38338958a3dd0ff56f47fc5f822 100644 (file)
@@ -8,6 +8,23 @@
 /* Compat work for 2.6.24 */
 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25))
 
+#include <linux/types.h>
+#include <linux/io.h>
+#include <linux/hw_random.h>
+#include <linux/leds.h>
+#include <linux/kernel.h>
+#include <linux/device.h>
+#include <asm-generic/bug.h>
+
+#define __WARN(foo) dump_stack()
+
+#define dev_emerg(dev, format, arg...)          \
+       dev_printk(KERN_EMERG , dev , format , ## arg)
+#define dev_alert(dev, format, arg...)          \
+       dev_printk(KERN_ALERT , dev , format , ## arg)
+#define dev_crit(dev, format, arg...)           \
+       dev_printk(KERN_CRIT , dev , format , ## arg)
+
 /* The patch:
  * commit 8b5f6883683c91ad7e1af32b7ceeb604d68e2865
  * Author: Marcin Slusarz <marcin.slusarz@gmail.com>