Commit 81ec005b authored by Fabio Aiuto's avatar Fabio Aiuto Committed by Greg Kroah-Hartman

staging: rtl8723bs: remove struct ndis_802_11_conf_fh

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: default avatarFabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/9c203ab5fe8a36b96f1f24e1fbf1a08ea0fa82af.1626874164.git.fabioaiuto83@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d8b322b6
...@@ -2154,10 +2154,6 @@ void rtw_init_registrypriv_dev_network(struct adapter *adapter) ...@@ -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.length = sizeof(struct ndis_802_11_conf);
pdev_network->configuration.beacon_period = 100; 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) void rtw_update_registrypriv_dev_network(struct adapter *adapter)
......
...@@ -32,13 +32,6 @@ enum ndis_802_11_network_type { ...@@ -32,13 +32,6 @@ enum ndis_802_11_network_type {
Ndis802_11NetworkTypeMax /* not a real type, defined as an upper bound */ 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. FW will only save the channel number in DSConfig.
ODI Handler will convert the channel number to freq. number. ODI Handler will convert the channel number to freq. number.
...@@ -48,7 +41,6 @@ struct ndis_802_11_conf { ...@@ -48,7 +41,6 @@ struct ndis_802_11_conf {
u32 beacon_period; /* units are Kusec */ u32 beacon_period; /* units are Kusec */
u32 atim_window; /* units are Kusec */ u32 atim_window; /* units are Kusec */
u32 ds_config; /* Frequency, units are kHz */ u32 ds_config; /* Frequency, units are kHz */
struct ndis_802_11_conf_fh fh_config;
}; };
enum ndis_802_11_network_infrastructure { enum ndis_802_11_network_infrastructure {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment