linux-staging.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Zhen Lei <thunder.leizhen@huawei.com>
Cc: Fabio Aiuto <fabioaiuto83@gmail.com>,
	Hans de Goede <hdegoede@redhat.com>,
	linux-staging <linux-staging@lists.linux.dev>
Subject: Re: [PATCH 1/2] staging: rtl8723bs: core: remove three unused local variables
Date: Thu, 13 May 2021 20:14:29 +0200	[thread overview]
Message-ID: <YJ1shU6dNDx6rLaF@kroah.com> (raw)
In-Reply-To: <20210513094007.6435-2-thunder.leizhen@huawei.com>

On Thu, May 13, 2021 at 05:40:06PM +0800, Zhen Lei wrote:
> Commit 968b15adb0ea ("staging: rtl8723bs: remove all DBG_871X logs")
> removed all of the DBG_871X logs, so no one uses local variable 'reassoc',
> 'reason_code' and 'psta' anymore.
> 
> Fixes: 968b15adb0ea ("staging: rtl8723bs: remove all DBG_871X logs")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
> ---
>  drivers/staging/rtl8723bs/core/rtw_mlme_ext.c | 31 +++----------------
>  1 file changed, 5 insertions(+), 26 deletions(-)
> 
> diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c
> index 9031cf7657ae91c..acf5578863e17d7 100644
> --- a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c
> +++ b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c
> @@ -1021,7 +1021,7 @@ unsigned int OnAssocReq(struct adapter *padapter, union recv_frame *precv_frame)
>  	u16 capab_info;
>  	struct rtw_ieee802_11_elems elems;
>  	struct sta_info *pstat;
> -	unsigned char 	reassoc, *p, *pos, *wpa_ie;
> +	unsigned char *p, *pos, *wpa_ie;
>  	unsigned char WMM_IE[] = {0x00, 0x50, 0xf2, 0x02, 0x00, 0x01};
>  	int		i, ie_len, wpa_ie_len, left;
>  	unsigned char 	supportRate[16];
> @@ -1041,14 +1041,10 @@ unsigned int OnAssocReq(struct adapter *padapter, union recv_frame *precv_frame)
>  		return _FAIL;
>  
>  	frame_type = GetFrameSubType(pframe);
> -	if (frame_type == WIFI_ASSOCREQ) {
> -		reassoc = 0;
> +	if (frame_type == WIFI_ASSOCREQ)
>  		ie_offset = _ASOCREQ_IE_OFFSET_;
> -	} else { /*  WIFI_REASSOCREQ */
> -		reassoc = 1;
> +	else	/*  WIFI_REASSOCREQ */
>  		ie_offset = _REASOCREQ_IE_OFFSET_;
> -	}
> -
>  
>  	if (pkt_len < sizeof(struct ieee80211_hdr_3addr) + ie_offset)
>  		return _FAIL;
> @@ -1726,7 +1722,7 @@ unsigned int OnAction_back(struct adapter *padapter, union recv_frame *precv_fra
>  	struct recv_reorder_ctrl *preorder_ctrl;
>  	unsigned char 	*frame_body;
>  	unsigned char 	category, action;
> -	unsigned short	tid, status, reason_code = 0;
> +	unsigned short	tid, status;
>  	struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
>  	struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info);
>  	u8 *pframe = precv_frame->u.hdr.rx_data;
> @@ -1795,9 +1791,6 @@ unsigned int OnAction_back(struct adapter *padapter, union recv_frame *precv_fra
>  					~BIT((frame_body[3] >> 4) & 0xf);
>  				psta->htpriv.candidate_tid_bitmap &=
>  					~BIT((frame_body[3] >> 4) & 0xf);
> -
> -				/* reason_code = frame_body[4] | (frame_body[5] << 8); */
> -				reason_code = get_unaligned_le16(&frame_body[4]);
>  			} else if ((frame_body[3] & BIT(3)) == BIT(3)) {
>  				tid = (frame_body[3] >> 4) & 0x0F;
>  
> @@ -5127,22 +5120,8 @@ void _linked_info_dump(struct adapter *padapter)
>  
>  		if ((pmlmeinfo->state&0x03) == WIFI_FW_STATION_STATE) {
>  			rtw_hal_get_def_var(padapter, HAL_DEF_UNDERCORATEDSMOOTHEDPWDB, &UndecoratedSmoothedPWDB);
> -		} else if ((pmlmeinfo->state&0x03) == _HW_STATE_AP_) {
> -			struct list_head	*phead, *plist;
> -
> -			struct sta_info *psta = NULL;
> -			struct sta_priv *pstapriv = &padapter->stapriv;
> -
> -			spin_lock_bh(&pstapriv->asoc_list_lock);
> -			phead = &pstapriv->asoc_list;
> -			plist = get_next(phead);
> -			while (phead != plist) {
> -				psta = container_of(plist, struct sta_info, asoc_list);
> -				plist = get_next(plist);
> -			}
> -			spin_unlock_bh(&pstapriv->asoc_list_lock);
> -
>  		}
> +
>  		for (i = 0; i < NUM_STA; i++) {
>  			if (pdvobj->macid[i]) {
>  				if (i != 1) /* skip bc/mc sta */
> -- 
> 2.26.0.106.g9fadedd
> 
> 
> 

Does not apply to my tree :(

  reply	other threads:[~2021-05-13 18:14 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-13  9:40 [PATCH 0/2] Clear several unused local variable warnings Zhen Lei
2021-05-13  9:40 ` [PATCH 1/2] staging: rtl8723bs: core: remove three unused local variables Zhen Lei
2021-05-13 18:14   ` Greg Kroah-Hartman [this message]
2021-05-14  1:04     ` Leizhen (ThunderTown)
2021-05-13  9:40 ` [PATCH 2/2] staging: rtl8723bs: core: eliminate erroneous reporting of unused variable 'evt_seq' Zhen Lei
2021-05-13 18:13   ` Greg Kroah-Hartman
2021-05-14  1:02     ` Leizhen (ThunderTown)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YJ1shU6dNDx6rLaF@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=fabioaiuto83@gmail.com \
    --cc=hdegoede@redhat.com \
    --cc=linux-staging@lists.linux.dev \
    --cc=thunder.leizhen@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).