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: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
b992a28557
commit
0bb4e30f13
|
@ -2480,9 +2480,6 @@ struct ath6kl *ath6kl_core_alloc(struct device *dev)
|
|||
ar->tx_pwr = 0;
|
||||
|
||||
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->state = ATH6KL_STATE_OFF;
|
||||
|
|
|
@ -542,7 +542,6 @@ struct ath6kl {
|
|||
struct list_head amsdu_rx_buffer_queue;
|
||||
u8 rx_meta_ver;
|
||||
enum wlan_low_pwr_state wlan_pwr_state;
|
||||
struct wmi_scan_params_cmd sc_params;
|
||||
u8 mac_addr[ETH_ALEN];
|
||||
#define AR_MCAST_FILTER_MAC_ADDR_SIZE 4
|
||||
struct {
|
||||
|
|
|
@ -748,9 +748,6 @@ struct wmi_start_scan_cmd {
|
|||
__le16 ch_list[1];
|
||||
} __packed;
|
||||
|
||||
/* WMI_SET_SCAN_PARAMS_CMDID */
|
||||
#define WMI_SHORTSCANRATIO_DEFAULT 3
|
||||
|
||||
/*
|
||||
* Warning: scan control flag value of 0xFF is used to disable
|
||||
* all flags in WMI_SCAN_PARAMS_CMD. Do not add any more
|
||||
|
@ -783,13 +780,6 @@ enum wmi_scan_ctrl_flags_bits {
|
|||
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 {
|
||||
/* sec */
|
||||
__le16 fg_start_period;
|
||||
|
|
Loading…
Reference in New Issue