Go to the documentation of this file.
14 #ifndef __GDM_WIMAX_H__
15 #define __GDM_WIMAX_H__
17 #include <linux/netdevice.h>
18 #include <linux/types.h>
20 #if defined(CONFIG_WIMAX_GDM72XX_QOS)
24 #define DRIVER_VERSION "3.2.3"
30 #define H2L(x) __cpu_to_le16(x)
31 #define L2H(x) __le16_to_cpu(x)
32 #define DH2L(x) __cpu_to_le32(x)
33 #define DL2H(x) __le32_to_cpu(x)
35 #define H2B(x) __cpu_to_be16(x)
36 #define B2H(x) __be16_to_cpu(x)
37 #define DH2B(x) __cpu_to_be32(x)
38 #define DB2H(x) __be32_to_cpu(x)
57 struct data_s sdk_data[SIOC_DATA_MAX];
59 #if defined(CONFIG_WIMAX_GDM72XX_QOS)
67 #define dprintk(fmt, args ...) printk(KERN_DEBUG " [GDM] " fmt, ## args)
73 #if defined(DEBUG_SDU)
74 #define DUMP_SDU_ALL (1<<0)
75 #define DUMP_SDU_ARP (1<<1)
76 #define DUMP_SDU_IP (1<<2)
77 #define DUMP_SDU_IP_TCP (1<<8)
78 #define DUMP_SDU_IP_UDP (1<<9)
79 #define DUMP_SDU_IP_ICMP (1<<10)
80 #define DUMP_PACKET (DUMP_SDU_ALL)