From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Xu Jia <xujia39@huawei.com>
Cc: Ross Schmidt <ross.schm.dev@gmail.com>,
Amarjargal Gundjalam <amarjargal16@gmail.com>,
Jason Yan <yanaijie@huawei.com>,
linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org,
kernel-janitors@vger.kernel.org
Subject: Re: [PATCH -next] staging: rtl8723bs: core: Remove unused variable 'res'
Date: Wed, 31 Mar 2021 12:29:16 +0200 [thread overview]
Message-ID: <YGRO/JzEvCgt9I0M@kroah.com> (raw)
In-Reply-To: <1617178363-34193-1-git-send-email-xujia39@huawei.com>
On Wed, Mar 31, 2021 at 04:12:43PM +0800, Xu Jia wrote:
> The variable 'res' is not used in function, this commit
> remove it to fix the warning.
>
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Xu Jia <xujia39@huawei.com>
> ---
> drivers/staging/rtl8723bs/core/rtw_sta_mgt.c | 6 +-----
> 1 file changed, 1 insertion(+), 5 deletions(-)
>
> diff --git a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
> index f96dd0b40e04..00b83919a9a3 100644
> --- a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
> +++ b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
> @@ -533,7 +533,6 @@ struct sta_info *rtw_get_stainfo(struct sta_priv *pstapriv, u8 *hwaddr)
> u32 rtw_init_bcmc_stainfo(struct adapter *padapter)
> {
> struct sta_info *psta;
> - u32 res = _SUCCESS;
> NDIS_802_11_MAC_ADDRESS bcast_addr = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
>
> struct sta_priv *pstapriv = &padapter->stapriv;
> @@ -542,15 +541,12 @@ u32 rtw_init_bcmc_stainfo(struct adapter *padapter)
> psta = rtw_alloc_stainfo(pstapriv, bcast_addr);
>
> if (!psta) {
> - res = _FAIL;
> RT_TRACE(_module_rtl871x_sta_mgt_c_, _drv_err_, ("rtw_alloc_stainfo fail"));
> - goto exit;
> + return _FAIL;
You just changed the logic here, that's not a good thing for a "robot"
to be doing at all.
greg k-h
prev parent reply other threads:[~2021-03-31 10:30 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-31 8:12 [PATCH -next] staging: rtl8723bs: core: Remove unused variable 'res' Xu Jia
2021-03-31 8:49 ` Dan Carpenter
2021-03-31 10:29 ` Greg Kroah-Hartman [this message]
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=YGRO/JzEvCgt9I0M@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=amarjargal16@gmail.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=ross.schm.dev@gmail.com \
--cc=xujia39@huawei.com \
--cc=yanaijie@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.