]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging:r8188eu: remove GEN_MLME_EXT_HANDLER macro
authorIvan Safonov <insafonov@gmail.com>
Fri, 30 Sep 2016 14:36:21 +0000 (21:36 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 2 Oct 2016 15:31:16 +0000 (17:31 +0200)
GEN_MLME_EXT_HANDLER is redundant macro.

Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/rtw_mlme_ext.h

index 872a5312ae113141b9d8e4ab7d051abe23af265b..1b1caaf583c9eae004f5fc6e630b78e2d5202d37 100644 (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