Commit e847655a authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: rtl8723au: core: rtw_recv: Remove useless initialisation

Remove intialisation of a variable that is immediately reassigned.

The semantic patch used to find this is:

// <smpl>
@@
type T;
identifier x;
constant C;
expression e;
@@

T x
- = C
 ;
x = e;
// </smpl>
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fcf7f338
...@@ -626,7 +626,7 @@ void process23a_pwrbit_data(struct rtw_adapter *padapter, ...@@ -626,7 +626,7 @@ void process23a_pwrbit_data(struct rtw_adapter *padapter,
struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
struct rx_pkt_attrib *pattrib = &precv_frame->attrib; struct rx_pkt_attrib *pattrib = &precv_frame->attrib;
struct sta_priv *pstapriv = &padapter->stapriv; struct sta_priv *pstapriv = &padapter->stapriv;
struct sta_info *psta = NULL; struct sta_info *psta;
psta = rtw_get_stainfo23a(pstapriv, pattrib->src); psta = rtw_get_stainfo23a(pstapriv, pattrib->src);
...@@ -653,7 +653,7 @@ void process_wmmps_data(struct rtw_adapter *padapter, ...@@ -653,7 +653,7 @@ void process_wmmps_data(struct rtw_adapter *padapter,
#ifdef CONFIG_8723AU_AP_MODE #ifdef CONFIG_8723AU_AP_MODE
struct rx_pkt_attrib *pattrib = &precv_frame->attrib; struct rx_pkt_attrib *pattrib = &precv_frame->attrib;
struct sta_priv *pstapriv = &padapter->stapriv; struct sta_priv *pstapriv = &padapter->stapriv;
struct sta_info *psta = NULL; struct sta_info *psta;
psta = rtw_get_stainfo23a(pstapriv, pattrib->src); psta = rtw_get_stainfo23a(pstapriv, pattrib->src);
...@@ -2151,7 +2151,7 @@ int process_recv_indicatepkts(struct rtw_adapter *padapter, ...@@ -2151,7 +2151,7 @@ int process_recv_indicatepkts(struct rtw_adapter *padapter,
static int recv_func_prehandle(struct rtw_adapter *padapter, static int recv_func_prehandle(struct rtw_adapter *padapter,
struct recv_frame *rframe) struct recv_frame *rframe)
{ {
int ret = _SUCCESS; int ret;
/* check the frame crtl field and decache */ /* check the frame crtl field and decache */
ret = validate_recv_frame(padapter, rframe); ret = validate_recv_frame(padapter, rframe);
......
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