wifi: rsi: remove unused variable

Remove a variable here that was now set but never used.

Fixes: f276e20b182d ("wifi: mac80211: move interface config to new struct")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Johannes Berg 2022-07-13 21:16:37 +02:00
parent c8fda7d281
commit 9dd9495d56

View File

@ -334,7 +334,6 @@ int rsi_send_mgmt_pkt(struct rsi_common *common,
struct sk_buff *skb) struct sk_buff *skb)
{ {
struct rsi_hw *adapter = common->priv; struct rsi_hw *adapter = common->priv;
struct ieee80211_bss_conf *bss;
struct ieee80211_hdr *wh; struct ieee80211_hdr *wh;
struct ieee80211_tx_info *info; struct ieee80211_tx_info *info;
struct skb_info *tx_params; struct skb_info *tx_params;
@ -359,7 +358,6 @@ int rsi_send_mgmt_pkt(struct rsi_common *common,
return status; return status;
} }
bss = &info->control.vif->bss_conf;
wh = (struct ieee80211_hdr *)&skb->data[header_size]; wh = (struct ieee80211_hdr *)&skb->data[header_size];
mgmt_desc = (struct rsi_mgmt_desc *)skb->data; mgmt_desc = (struct rsi_mgmt_desc *)skb->data;
xtend_desc = (struct rsi_xtended_desc *)&skb->data[FRAME_DESC_SZ]; xtend_desc = (struct rsi_xtended_desc *)&skb->data[FRAME_DESC_SZ];