mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 00:51:44 +00:00
rsi: fill rx_params only once.
rx_params are getting updated two times in driver, which is not required. Hence, removing duplicate updation of rx_params from rsi_prepare_skb(). Signed-off-by: Amol Hanwate <amol.hanwate@redpinesignals.com> Signed-off-by: Siva Rebbagondla <siva.rebbagondla@redpinesignals.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
abbe87d339
commit
160ee2a11c
@ -122,7 +122,6 @@ static struct sk_buff *rsi_prepare_skb(struct rsi_common *common,
|
||||
u8 extended_desc)
|
||||
{
|
||||
struct ieee80211_tx_info *info;
|
||||
struct skb_info *rx_params;
|
||||
struct sk_buff *skb = NULL;
|
||||
u8 payload_offset;
|
||||
struct ieee80211_vif *vif;
|
||||
@ -149,10 +148,6 @@ static struct sk_buff *rsi_prepare_skb(struct rsi_common *common,
|
||||
vif = rsi_get_vif(common->priv, wh->addr1);
|
||||
|
||||
info = IEEE80211_SKB_CB(skb);
|
||||
rx_params = (struct skb_info *)info->driver_data;
|
||||
rx_params->rssi = rsi_get_rssi(buffer);
|
||||
rx_params->channel = rsi_get_connected_channel(vif);
|
||||
|
||||
return skb;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user