staging: rtl8192e: remove unused macros
Several (unused) macros were removed from driver. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7527cf3710
commit
7e4eb9fdf2
6 changed files with 0 additions and 40 deletions
|
@ -78,12 +78,6 @@ static inline void cpMacAddr(unsigned char *des, unsigned char *src)
|
||||||
#define UPDATE_CIE_SRC(__pIeeeDev, __pTa) \
|
#define UPDATE_CIE_SRC(__pIeeeDev, __pTa) \
|
||||||
cpMacAddr(GET_DOT11D_INFO(__pIeeeDev)->CountryIeSrcAddr, __pTa)
|
cpMacAddr(GET_DOT11D_INFO(__pIeeeDev)->CountryIeSrcAddr, __pTa)
|
||||||
|
|
||||||
#define IS_COUNTRY_IE_CHANGED(__pIeeeDev, __Ie) \
|
|
||||||
(((__Ie).Length == 0 || (__Ie).Length != \
|
|
||||||
GET_DOT11D_INFO(__pIeeeDev)->CountryIeLen) ? \
|
|
||||||
false : (!memcmp(GET_DOT11D_INFO(__pIeeeDev)->CountryIeBuf, \
|
|
||||||
(__Ie).Octet, (__Ie).Length)))
|
|
||||||
|
|
||||||
#define CIE_WATCHDOG_TH 1
|
#define CIE_WATCHDOG_TH 1
|
||||||
#define GET_CIE_WATCHDOG(__pIeeeDev) \
|
#define GET_CIE_WATCHDOG(__pIeeeDev) \
|
||||||
(GET_DOT11D_INFO(__pIeeeDev)->CountryIeWatchdog)
|
(GET_DOT11D_INFO(__pIeeeDev)->CountryIeWatchdog)
|
||||||
|
|
|
@ -100,10 +100,6 @@
|
||||||
|
|
||||||
#define IS_ADAPTER_SENDS_BEACON(dev) 0
|
#define IS_ADAPTER_SENDS_BEACON(dev) 0
|
||||||
|
|
||||||
#define IS_UNDER_11N_AES_MODE(_rtllib) \
|
|
||||||
((_rtllib->pHTInfo->bCurrentHTSupport == true) && \
|
|
||||||
(_rtllib->pairwise_key_type == KEY_TYPE_CCMP))
|
|
||||||
|
|
||||||
#define HAL_MEMORY_MAPPED_IO_RANGE_8190PCI 0x1000
|
#define HAL_MEMORY_MAPPED_IO_RANGE_8190PCI 0x1000
|
||||||
#define HAL_HW_PCI_REVISION_ID_8190PCI 0x00
|
#define HAL_HW_PCI_REVISION_ID_8190PCI 0x00
|
||||||
#define HAL_MEMORY_MAPPED_IO_RANGE_8192PCIE 0x4000
|
#define HAL_MEMORY_MAPPED_IO_RANGE_8192PCIE 0x4000
|
||||||
|
|
|
@ -255,14 +255,6 @@ extern u8 test_flag;
|
||||||
/*------------------------Export global variable----------------------------*/
|
/*------------------------Export global variable----------------------------*/
|
||||||
|
|
||||||
|
|
||||||
/*------------------------Export Marco Definition---------------------------*/
|
|
||||||
#define DM_APInitGainChangeNotify(Event) \
|
|
||||||
{ \
|
|
||||||
dm_digtable.CurAPConnectState = Event; \
|
|
||||||
}
|
|
||||||
/*------------------------Export Marco Definition---------------------------*/
|
|
||||||
|
|
||||||
|
|
||||||
/*--------------------------Exported Function prototype---------------------*/
|
/*--------------------------Exported Function prototype---------------------*/
|
||||||
/*--------------------------Exported Function prototype---------------------*/
|
/*--------------------------Exported Function prototype---------------------*/
|
||||||
extern void init_hal_dm(struct net_device *dev);
|
extern void init_hal_dm(struct net_device *dev);
|
||||||
|
|
|
@ -77,9 +77,6 @@ enum chnl_op {
|
||||||
CHNLOP_SWCHNL = 3,
|
CHNLOP_SWCHNL = 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
#define CHHLOP_IN_PROGRESS(_pHTInfo) \
|
|
||||||
(((_pHTInfo)->ChnlOp > CHNLOP_NONE) ? true : false)
|
|
||||||
|
|
||||||
enum ht_action {
|
enum ht_action {
|
||||||
ACT_RECOMMAND_WIDTH = 0,
|
ACT_RECOMMAND_WIDTH = 0,
|
||||||
ACT_MIMO_PWR_SAVE = 1,
|
ACT_MIMO_PWR_SAVE = 1,
|
||||||
|
|
|
@ -338,18 +338,6 @@ struct sta_qos {
|
||||||
};
|
};
|
||||||
|
|
||||||
#define QBSS_LOAD_SIZE 5
|
#define QBSS_LOAD_SIZE 5
|
||||||
#define GET_QBSS_LOAD_STA_COUNT(__pStart) \
|
|
||||||
ReadEF2Byte(__pStart)
|
|
||||||
#define SET_QBSS_LOAD_STA_COUNT(__pStart, __Value) \
|
|
||||||
WriteEF2Byte(__pStart, __Value)
|
|
||||||
#define GET_QBSS_LOAD_CHNL_UTILIZATION(__pStart) \
|
|
||||||
ReadEF1Byte((u8 *)(__pStart) + 2)
|
|
||||||
#define SET_QBSS_LOAD_CHNL_UTILIZATION(__pStart, __Value) \
|
|
||||||
WriteEF1Byte((u8 *)(__pStart) + 2, __Value)
|
|
||||||
#define GET_QBSS_LOAD_AVAILABLE_CAPACITY(__pStart) \
|
|
||||||
ReadEF2Byte((u8 *)(__pStart) + 3)
|
|
||||||
#define SET_QBSS_LOAD_AVAILABLE_CAPACITY(__pStart, __Value) \
|
|
||||||
WriteEF2Byte((u8 *)(__pStart) + 3, __Value)
|
|
||||||
|
|
||||||
struct bss_qos {
|
struct bss_qos {
|
||||||
QOS_MODE bdQoSMode;
|
QOS_MODE bdQoSMode;
|
||||||
|
@ -365,10 +353,6 @@ struct bss_qos {
|
||||||
bool bQBssLoadValid;
|
bool bQBssLoadValid;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define sQoSCtlLng 2
|
|
||||||
#define QOS_CTRL_LEN(_QosMode) ((_QosMode > QOS_DISABLE) ? sQoSCtlLng : 0)
|
|
||||||
|
|
||||||
|
|
||||||
#define IsACValid(ac) ((ac >= 0 && ac <= 7) ? true : false)
|
#define IsACValid(ac) ((ac >= 0 && ac <= 7) ? true : false)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -482,9 +482,6 @@ enum rt_op_mode {
|
||||||
#define IEEE_CRYPT_ALG_NAME_LEN 16
|
#define IEEE_CRYPT_ALG_NAME_LEN 16
|
||||||
|
|
||||||
#define MAX_IE_LEN 0xff
|
#define MAX_IE_LEN 0xff
|
||||||
#define RT_ASSERT_RET(_Exp) do {} while (0)
|
|
||||||
#define RT_ASSERT_RET_VALUE(_Exp, Ret) \
|
|
||||||
do {} while (0)
|
|
||||||
|
|
||||||
struct ieee_param {
|
struct ieee_param {
|
||||||
u32 cmd;
|
u32 cmd;
|
||||||
|
|
Loading…
Add table
Reference in a new issue