From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Isaac Aneek Sarker <alvasarker2004@gmail.com>
Cc: Nikolay Kulikov <nikolayof23@gmail.com>,
Andrei Khomenkov <khomenkov@mailbox.org>,
Dalvin-Ehinoma Noah Aiguobas <fliegbert2@gmail.com>,
Khushal Chitturi <khushalchitturi@gmail.com>,
Minu Jin <s9430939@naver.com>, Anirban Bose <boses156@gmail.com>,
Khasar Munkh-Erdene <02khasar@gmail.com>,
Jennifer Guo <guojy.bj@gmail.com>,
linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging: rtl8723bs: fix unnecessary else block with only a break statement
Date: Wed, 9 Sep 2026 15:42:37 +0200 [thread overview]
Message-ID: <2026090926-nursery-despite-185a@gregkh> (raw)
In-Reply-To: <20260909193736.3d7a851a@isaac-aneek-MS-7C52>
On Wed, Sep 09, 2026 at 07:37:36PM +0600, Isaac Aneek Sarker wrote:
> On Wed, 9 Sep 2026 11:33:49 +0200
> Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote:
>
> > On Wed, Sep 09, 2026 at 02:29:38PM +0600, Isaac Aneek Sarker wrote:
> > > Warning found by checkpatch.pl : else is not generally useful after a
> > > break or return. The function would reach the break statement after
> > > if-elseif block even if the else block is not used.
> > >
> > > Signed-off-by: Isaac Aneek Sarker <alvasarker2004@gmail.com>
> > > ---
> > > drivers/staging/rtl8723bs/core/rtw_recv.c | 4 ++--
> > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/staging/rtl8723bs/core/rtw_recv.c b/drivers/staging/rtl8723bs/core/rtw_recv.c
> > > index 3c82012fdc6c..a203ef8bd6f6 100644
> > > --- a/drivers/staging/rtl8723bs/core/rtw_recv.c
> > > +++ b/drivers/staging/rtl8723bs/core/rtw_recv.c
> > > @@ -1789,8 +1789,8 @@ static int enqueue_reorder_recvframe(struct recv_reorder_ctrl *preorder_ctrl, un
> > > /* Duplicate entry is found!! Do not insert current entry. */
> > > /* spin_unlock_irqrestore(&ppending_recvframe_queue->lock, irql); */
> > > return false;
> > > - else
> > > - break;
> > > +
> > > + break;
> >
> > Did you test this code? It looks like you now just changed the logic a
> > lot, right?
> >
> > thanks,
> >
> > greg k-h
>
> No I didn't test the code. And I don't have the required hardware. But I would like to know what are widely used test methods in linux kernel dev to test a driver when you don't have the relevant hardware vs when you have one for and finally test the code. At first it seemed a trivial change to me because that else block would only execute if the if-elseif block didnt execute, which made me come to the decision that the else block was unnecessary.
Please wrap your lines :)
Look at the logic of what you just changed here, is it identical to what
was present before your change? If not, what is different? checkpatch
is for coding style issues, not logic changes, right?
See the mailing list archives for many discussions about this type of
"cleanup".
thanks,
greg k-h
prev parent reply other threads:[~2026-09-09 13:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-09 8:29 Isaac Aneek Sarker
2026-09-09 9:33 ` Greg Kroah-Hartman
2026-09-09 13:37 ` Isaac Aneek Sarker
2026-09-09 13:42 ` 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=2026090926-nursery-despite-185a@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=02khasar@gmail.com \
--cc=alvasarker2004@gmail.com \
--cc=boses156@gmail.com \
--cc=fliegbert2@gmail.com \
--cc=guojy.bj@gmail.com \
--cc=khomenkov@mailbox.org \
--cc=khushalchitturi@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=nikolayof23@gmail.com \
--cc=s9430939@naver.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
all inboxes | Powered by JetHome®