staging: rtl8192e: Convert typedefs that can be replaced with #define

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-19 21:17:25 -05:00
parent e660594750
commit 9de9f962c7
3 changed files with 8 additions and 5 deletions

View file

@ -110,7 +110,8 @@ struct octet_string {
};
#define MAX_WMMELE_LENGTH 64
typedef u32 QOS_MODE, *PQOS_MODE;
#define QOS_MODE u32
#define QOS_DISABLE 0
#define QOS_WMM 1
#define QOS_WMMSA 2
@ -174,7 +175,8 @@ enum qos_ie_source {
};
typedef u32 AC_CODING;
#define AC_CODING u32
#define AC0_BE 0
#define AC1_BK 1
#define AC2_VI 2
@ -237,7 +239,7 @@ struct acm {
typedef u8 AC_UAPSD, *PAC_UAPSD;
#define AC_UAPSD u8
#define GET_VO_UAPSD(_apsd) ((_apsd) & BIT0)
#define SET_VO_UAPSD(_apsd) ((_apsd) |= BIT0)

View file

@ -80,8 +80,8 @@
.vendor = (vend), .device = (dev), \
.subvendor = PCI_ANY_ID, .subdevice =PCI_ANY_ID , \
.driver_data = (kernel_ulong_t)&(cfg)
typedef irqreturn_t irqreturn_type;
#define irqreturn_type irqreturn_t
#define rtl8192_interrupt(x,y,z) rtl8192_interrupt_rsl(x,y)

View file

@ -1910,7 +1910,8 @@ struct rt_pwr_save_ctrl {
};
typedef u32 RT_RF_CHANGE_SOURCE;
#define RT_RF_CHANGE_SOURCE u32
#define RF_CHANGE_BY_SW BIT31
#define RF_CHANGE_BY_HW BIT30
#define RF_CHANGE_BY_PS BIT29