add back compat for bool
parent
b4094864f1
commit
652bbb77f6
|
@ -60,6 +60,13 @@
|
||||||
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19))
|
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19))
|
||||||
#undef DRM_IRQ_ARGS
|
#undef DRM_IRQ_ARGS
|
||||||
#define DRM_IRQ_ARGS int irq, void *arg, struct pt_regs *regs
|
#define DRM_IRQ_ARGS int irq, void *arg, struct pt_regs *regs
|
||||||
|
|
||||||
|
typedef _Bool bool;
|
||||||
|
enum {
|
||||||
|
false = 0,
|
||||||
|
true = 1
|
||||||
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef list_for_each_safe
|
#ifndef list_for_each_safe
|
||||||
|
|
Loading…
Reference in New Issue