M7350/external/compat-wireless/include/linux/compat-2.6.30.h
2024-09-09 08:52:07 +00:00

52 lines
1.1 KiB
C

#ifndef LINUX_26_30_COMPAT_H
#define LINUX_26_30_COMPAT_H
#include <linux/version.h>
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30))
#include <linux/device.h>
#include <linux/pci_regs.h>
#ifndef TP_PROTO
#define TP_PROTO(args...) TPPROTO(args)
#endif
#ifndef TP_ARGS
#define TP_ARGS(args...) TPARGS(args)
#endif
#define IRQ_WAKE_THREAD (2)
/* From : include/linux/pm.h */
/* How to reorder dpm_list after device_move() */
enum dpm_order {
DPM_ORDER_NONE,
DPM_ORDER_DEV_AFTER_PARENT,
DPM_ORDER_PARENT_BEFORE_DEV,
DPM_ORDER_DEV_LAST,
};
static inline void dev_set_uevent_suppress(struct device *dev, int val)
{
dev->uevent_suppress = val;
}
/*
* Print a one-time message (analogous to WARN_ONCE() et al):
*/
#define printk_once(x...) ({ \
static bool __print_once; \
\
if (!__print_once) { \
__print_once = true; \
printk(x); \
} \
})
#define PCI_EXP_LNKCTL2 48 /* Link Control 2 */
#define PCI_EXP_SLTCTL2 56 /* Slot Control 2 */
#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)) */
#endif /* LINUX_26_30_COMPAT_H */