staging:r8188eu: remove GEN_MLME_EXT_HANDLER macro

GEN_MLME_EXT_HANDLER is redundant macro.

Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Ivan Safonov 2016-09-30 21:36:21 +07:00 committed by Greg Kroah-Hartman
parent d88dd94e24
commit 612e1c94bf
1 changed files with 15 additions and 17 deletions

View File

@ -625,26 +625,24 @@ u8 led_blink_hdl(struct adapter *padapter, unsigned char *pbuf);
u8 set_csa_hdl(struct adapter *padapter, unsigned char *pbuf);
u8 tdls_hdl(struct adapter *padapter, unsigned char *pbuf);
#define GEN_MLME_EXT_HANDLER(size, cmd) {size, cmd},
#ifdef _RTW_CMD_C_
static struct cmd_hdl wlancmds[] = {
GEN_MLME_EXT_HANDLER(sizeof(struct wlan_bssid_ex), join_cmd_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct disconnect_parm), disconnect_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct wlan_bssid_ex), createbss_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct setopmode_parm), setopmode_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct sitesurvey_parm), sitesurvey_cmd_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct setauth_parm), setauth_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct setkey_parm), setkey_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct set_stakey_parm), set_stakey_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct set_assocsta_parm), NULL)
GEN_MLME_EXT_HANDLER(sizeof(struct addBaReq_parm), add_ba_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct set_ch_parm), set_ch_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct wlan_bssid_ex), tx_beacon_hdl)
GEN_MLME_EXT_HANDLER(0, mlme_evt_hdl)
GEN_MLME_EXT_HANDLER(0, rtw_drvextra_cmd_hdl)
GEN_MLME_EXT_HANDLER(sizeof(struct SetChannelPlan_param), set_chplan_hdl)
{sizeof(struct wlan_bssid_ex), join_cmd_hdl},
{sizeof(struct disconnect_parm), disconnect_hdl},
{sizeof(struct wlan_bssid_ex), createbss_hdl},
{sizeof(struct setopmode_parm), setopmode_hdl},
{sizeof(struct sitesurvey_parm), sitesurvey_cmd_hdl},
{sizeof(struct setauth_parm), setauth_hdl},
{sizeof(struct setkey_parm), setkey_hdl},
{sizeof(struct set_stakey_parm), set_stakey_hdl},
{sizeof(struct set_assocsta_parm), NULL},
{sizeof(struct addBaReq_parm), add_ba_hdl},
{sizeof(struct set_ch_parm), set_ch_hdl},
{sizeof(struct wlan_bssid_ex), tx_beacon_hdl},
{0, mlme_evt_hdl},
{0, rtw_drvextra_cmd_hdl},
{sizeof(struct SetChannelPlan_param), set_chplan_hdl}
};
#endif