staging: rtl8188eu: move static array from .h to .c

Declaring a static array in a header file is likely to cause name conflicts
if the declaration is pulled in multiple times.

The rtl8188 driver protects the declaration of the wlancmds array in
rtw_mlme_ext.h with ifdef _RTW_CMD_C_, which is defined only in rtw_cmd.c.
It makes more sense to declare the array in the .c file.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20210408195601.4762-7-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Martin Kaiser 2021-04-08 21:55:56 +02:00 committed by Greg Kroah-Hartman
parent 2fa087e0ae
commit 7b697f098d
2 changed files with 18 additions and 22 deletions

View File

@ -12,6 +12,24 @@
#include <mlme_osdep.h>
#include <rtw_mlme_ext.h>
static struct cmd_hdl wlancmds[] = {
{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}
};
/*
* Caller and the rtw_cmd_thread can protect cmd_q by spin_lock.
* No irqsave is necessary.

View File

@ -606,28 +606,6 @@ 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);
#ifdef _RTW_CMD_C_
static struct cmd_hdl wlancmds[] = {
{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
struct C2HEvent_Header {
#ifdef __LITTLE_ENDIAN
unsigned int len:16;