Skip to content

Commit

Permalink
staging:r8188eu: remove GEN_MLME_EXT_HANDLER macro
Browse files Browse the repository at this point in the history
GEN_MLME_EXT_HANDLER is redundant macro.

Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ivan Safonov authored and Greg Kroah-Hartman committed Oct 2, 2016
1 parent d88dd94 commit 612e1c9
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions drivers/staging/rtl8188eu/include/rtw_mlme_ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 612e1c9

Please sign in to comment.