linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kurt Manucredo <fuzzybritches@protonmail.com>
To: gregkh@linuxfoundation.org, ross.schm.dev@gmail.com,
	straube.linux@gmail.com, dan.carpenter@oracle.com,
	d.straghkov@ispras.ru, tiwai@suse.de
Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org,
	Kurt Manucredo <fuzzybritches@protonmail.com>
Subject: [PATCH] staging: rtl8723bs: make if-statement checkpatch.pl conform
Date: Thu, 18 Feb 2021 19:50:27 +0000	[thread overview]
Message-ID: <20210218194830.8-1-fuzzybritches@protonmail.com> (raw)

Signed-off-by: Kurt Manucredo <fuzzybritches@protonmail.com>
---

The preferred coding style is:
	if (!StaAddr)
	return;

thank you mr. dan carpenter

 drivers/staging/rtl8723bs/core/rtw_wlan_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_wlan_util.c b/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
index 975f2830e29e..96feced698ac 100644
--- a/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
+++ b/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
@@ -2146,7 +2146,7 @@ void rtw_get_sec_iv(struct adapter *padapter, u8 *pcur_dot11txpn, u8 *StaAddr)
 	struct security_priv *psecpriv = &padapter->securitypriv;
 
 	memset(pcur_dot11txpn, 0, 8);
-	if (NULL == StaAddr)
+	if (!StaAddr)
 		return;
 	psta = rtw_get_stainfo(&padapter->stapriv, StaAddr);
 	DBG_871X("%s(): StaAddr: %02x %02x %02x %02x %02x %02x\n",
-- 
2.20.1



             reply	other threads:[~2021-02-18 20:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-18 19:50 Kurt Manucredo [this message]
2021-02-18 20:01 ` [PATCH] staging: rtl8723bs: make if-statement checkpatch.pl conform Greg KH
2021-02-19  7:01 ` Dan Carpenter

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=20210218194830.8-1-fuzzybritches@protonmail.com \
    --to=fuzzybritches@protonmail.com \
    --cc=d.straghkov@ispras.ru \
    --cc=dan.carpenter@oracle.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ross.schm.dev@gmail.com \
    --cc=straube.linux@gmail.com \
    --cc=tiwai@suse.de \
    /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).