add back compat for bool

This commit is contained in:
Dave Airlie 2007-04-05 20:20:33 +10:00
parent b4094864f1
commit 652bbb77f6

View file

@ -60,6 +60,13 @@
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19))
#undef DRM_IRQ_ARGS
#define DRM_IRQ_ARGS int irq, void *arg, struct pt_regs *regs
typedef _Bool bool;
enum {
false = 0,
true = 1
};
#endif
#ifndef list_for_each_safe