staging: rtl8723bs: remove struct ndis_802_11_conf_fh
authorFabio Aiuto <fabioaiuto83@gmail.com>
Wed, 21 Jul 2021 13:37:16 +0000 (15:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 Jul 2021 11:09:44 +0000 (13:09 +0200)
all members of struct ndis_802_11_conf_fh fh_config in
struct ndis_802_11_conf are set to zero and their values
are never used. So remove struct ndis_802_11_conf_fh.

Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/9c203ab5fe8a36b96f1f24e1fbf1a08ea0fa82af.1626874164.git.fabioaiuto83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_mlme.c
drivers/staging/rtl8723bs/include/wlan_bssdef.h

index f189cd6..624bafd 100644 (file)
@@ -2154,10 +2154,6 @@ void rtw_init_registrypriv_dev_network(struct adapter *adapter)
 
        pdev_network->configuration.length = sizeof(struct ndis_802_11_conf);
        pdev_network->configuration.beacon_period = 100;
-       pdev_network->configuration.fh_config.Length = 0;
-       pdev_network->configuration.fh_config.HopPattern = 0;
-       pdev_network->configuration.fh_config.HopSet = 0;
-       pdev_network->configuration.fh_config.DwellTime = 0;
 }
 
 void rtw_update_registrypriv_dev_network(struct adapter *adapter)
index 6bdda58..e5ab3ca 100644 (file)
@@ -32,13 +32,6 @@ enum ndis_802_11_network_type {
        Ndis802_11NetworkTypeMax    /*  not a real type, defined as an upper bound */
 };
 
-struct ndis_802_11_conf_fh {
-       u32 Length;             /*  Length of structure */
-       u32 HopPattern;         /*  As defined by 802.11, MSB set */
-       u32 HopSet;             /*  to one if non-802.11 */
-       u32 DwellTime;          /*  units are Kusec */
-};
-
 /*
        FW will only save the channel number in DSConfig.
        ODI Handler will convert the channel number to freq. number.
@@ -48,7 +41,6 @@ struct ndis_802_11_conf {
        u32 beacon_period;       /*  units are Kusec */
        u32 atim_window;         /*  units are Kusec */
        u32 ds_config;           /*  Frequency, units are kHz */
-       struct ndis_802_11_conf_fh    fh_config;
 };
 
 enum ndis_802_11_network_infrastructure {