Commit 0bb4e30f authored by Kalle Valo's avatar Kalle Valo

ath6kl: remove unused sc_params from struct ath6kl

It was only initialised but not used anywhere. Also remove two defines
which ended up unused after this change.
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent b992a285
...@@ -2480,9 +2480,6 @@ struct ath6kl *ath6kl_core_alloc(struct device *dev) ...@@ -2480,9 +2480,6 @@ struct ath6kl *ath6kl_core_alloc(struct device *dev)
ar->tx_pwr = 0; ar->tx_pwr = 0;
ar->intra_bss = 1; ar->intra_bss = 1;
memset(&ar->sc_params, 0, sizeof(ar->sc_params));
ar->sc_params.short_scan_ratio = WMI_SHORTSCANRATIO_DEFAULT;
ar->sc_params.scan_ctrl_flags = DEFAULT_SCAN_CTRL_FLAGS;
ar->lrssi_roam_threshold = DEF_LRSSI_ROAM_THRESHOLD; ar->lrssi_roam_threshold = DEF_LRSSI_ROAM_THRESHOLD;
ar->state = ATH6KL_STATE_OFF; ar->state = ATH6KL_STATE_OFF;
......
...@@ -542,7 +542,6 @@ struct ath6kl { ...@@ -542,7 +542,6 @@ struct ath6kl {
struct list_head amsdu_rx_buffer_queue; struct list_head amsdu_rx_buffer_queue;
u8 rx_meta_ver; u8 rx_meta_ver;
enum wlan_low_pwr_state wlan_pwr_state; enum wlan_low_pwr_state wlan_pwr_state;
struct wmi_scan_params_cmd sc_params;
u8 mac_addr[ETH_ALEN]; u8 mac_addr[ETH_ALEN];
#define AR_MCAST_FILTER_MAC_ADDR_SIZE 4 #define AR_MCAST_FILTER_MAC_ADDR_SIZE 4
struct { struct {
......
...@@ -748,9 +748,6 @@ struct wmi_start_scan_cmd { ...@@ -748,9 +748,6 @@ struct wmi_start_scan_cmd {
__le16 ch_list[1]; __le16 ch_list[1];
} __packed; } __packed;
/* WMI_SET_SCAN_PARAMS_CMDID */
#define WMI_SHORTSCANRATIO_DEFAULT 3
/* /*
* Warning: scan control flag value of 0xFF is used to disable * Warning: scan control flag value of 0xFF is used to disable
* all flags in WMI_SCAN_PARAMS_CMD. Do not add any more * all flags in WMI_SCAN_PARAMS_CMD. Do not add any more
...@@ -783,13 +780,6 @@ enum wmi_scan_ctrl_flags_bits { ...@@ -783,13 +780,6 @@ enum wmi_scan_ctrl_flags_bits {
ENABLE_SCAN_ABORT_EVENT = 0x40 ENABLE_SCAN_ABORT_EVENT = 0x40
}; };
#define DEFAULT_SCAN_CTRL_FLAGS \
(CONNECT_SCAN_CTRL_FLAGS | \
SCAN_CONNECTED_CTRL_FLAGS | \
ACTIVE_SCAN_CTRL_FLAGS | \
ROAM_SCAN_CTRL_FLAGS | \
ENABLE_AUTO_CTRL_FLAGS)
struct wmi_scan_params_cmd { struct wmi_scan_params_cmd {
/* sec */ /* sec */
__le16 fg_start_period; __le16 fg_start_period;
......
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