All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons
@ 2019-03-16 12:32 Himadri Pandya
  2019-03-16 12:32 ` [PATCH v2 1/4] staging: rtl8723bs: hal: Remove comparisions to NULL Himadri Pandya
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Himadri Pandya @ 2019-03-16 12:32 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, Himadri Pandya

- This patchset removes comparision to NULL in various files of
drivers/staging/rtl8723bs/hal/ .

- The changes are broken into separate patches to keep the length of
each patch below/near 100 lines for convinient reviewing.

v2:
- Change subject lines of patches
- Include a new patch to modify comparision with a constant

Himadri Pandya (4):
  staging: rtl8723bs: hal: Remove comparisions to NULL
  staging: rtl8723bs: hal: Remove NULL comparisions
  staging: rtl8723bs: hal: Replace variable==NULL comparisions with
    !variable
  staging: rtl8723bs: hal: Modify comparision to keep constant at right

 drivers/staging/rtl8723bs/hal/hal_btcoex.c     |  8 ++++----
 drivers/staging/rtl8723bs/hal/hal_com.c        |  8 ++++----
 drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 18 +++++++++---------
 drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c   |  8 ++++----
 drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c |  6 +++---
 5 files changed, 24 insertions(+), 24 deletions(-)

-- 
2.17.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH v2 1/4] staging: rtl8723bs: hal: Remove comparisions to NULL
  2019-03-16 12:32 [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Himadri Pandya
@ 2019-03-16 12:32 ` Himadri Pandya
  2019-03-16 12:32 ` [PATCH v2 2/4] staging: rtl8723bs: hal: Remove NULL comparisions Himadri Pandya
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Himadri Pandya @ 2019-03-16 12:32 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, Himadri Pandya

Remove comparision to NULL. Suggested by Coccinelle.

Signed-off-by: Himadri Pandya <himadri18.07@gmail.com>
---
Changes in V2:
	- Change subject line
---
 drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c   | 8 ++++----
 drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c b/drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c
index 9f4a10aaa774..dc2db3b8ffd6 100644
--- a/drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c
+++ b/drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c
@@ -1480,7 +1480,7 @@ static void rtl8723b_set_FwRsvdPagePkt(
 	MaxRsvdPageBufSize = RsvdPageNum*PageSize;
 
 	pcmdframe = rtw_alloc_cmdxmitframe(pxmitpriv);
-	if (pcmdframe == NULL) {
+	if (!pcmdframe) {
 		DBG_871X("%s: alloc ReservedPagePacket fail!\n", __func__);
 		return;
 	}
@@ -2069,7 +2069,7 @@ void rtl8723b_Add_RateATid(
 	u32 mask = bitmap&0x0FFFFFFF;
 
 	psta = pmlmeinfo->FW_sta_info[mac_id].psta;
-	if (psta == NULL)
+	if (!psta)
 		return;
 
 	bw = psta->bw_mode;
@@ -2107,7 +2107,7 @@ static void ConstructBtNullFunctionData(
 	pmlmeext = &padapter->mlmeextpriv;
 	pmlmeinfo = &pmlmeext->mlmext_info;
 
-	if (NULL == StaAddr) {
+	if (!StaAddr) {
 		memcpy(bssid, myid(&padapter->eeprompriv), ETH_ALEN);
 		StaAddr = bssid;
 	}
@@ -2176,7 +2176,7 @@ static void SetFwRsvdPagePkt_BTCoex(struct adapter *padapter)
 	MaxRsvdPageBufSize = RsvdPageNum*PageSize;
 
 	pcmdframe = rtw_alloc_cmdxmitframe(pxmitpriv);
-	if (pcmdframe == NULL) {
+	if (!pcmdframe) {
 		DBG_8192C("%s: alloc ReservedPagePacket fail!\n", __func__);
 		return;
 	}
diff --git a/drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c b/drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c
index 69c4db5b5b0c..c4fb9fe2ae73 100644
--- a/drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c
+++ b/drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c
@@ -63,7 +63,7 @@ static s32 rtl8723_dequeue_writeport(struct adapter *padapter)
 	else
 		pxmitbuf = dequeue_pending_xmitbuf(pxmitpriv);
 
-	if (pxmitbuf == NULL)
+	if (!pxmitbuf)
 		return true;
 
 	deviceId = ffaddr2deviceId(pdvobjpriv, pxmitbuf->ff_hwaddr);
@@ -284,7 +284,7 @@ static s32 xmit_xmitframes(struct adapter *padapter, struct xmit_priv *pxmitpriv
 				/*  check xmit_buf size enough or not */
 				txlen = txdesc_size + rtw_wlan_pkt_size(pxmitframe);
 				if (
-					(NULL == pxmitbuf) ||
+					(!pxmitbuf) ||
 					((_RND(pxmitbuf->len, 8) + txlen) > max_xmit_len) ||
 					(k >= (rtw_hal_sdio_max_txoqt_free_space(padapter)-1))
 				) {
@@ -307,7 +307,7 @@ static s32 xmit_xmitframes(struct adapter *padapter, struct xmit_priv *pxmitpriv
 					}
 
 					pxmitbuf = rtw_alloc_xmitbuf(pxmitpriv);
-					if (pxmitbuf == NULL) {
+					if (!pxmitbuf) {
 #ifdef DBG_XMIT_BUF
 						DBG_871X_LEVEL(_drv_err_, "%s: xmit_buf is not enough!\n", __func__);
 #endif
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 2/4] staging: rtl8723bs: hal: Remove NULL comparisions
  2019-03-16 12:32 [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Himadri Pandya
  2019-03-16 12:32 ` [PATCH v2 1/4] staging: rtl8723bs: hal: Remove comparisions to NULL Himadri Pandya
@ 2019-03-16 12:32 ` Himadri Pandya
  2019-03-16 12:32 ` [PATCH v2 3/4] staging: rtl8723bs: hal: Replace variable==NULL comparisions with !variable Himadri Pandya
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Himadri Pandya @ 2019-03-16 12:32 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, Himadri Pandya

Remove comparision to NULL. Suggested by Coccinelle.

Signed-off-by: Himadri Pandya <himadri18.07@gmail.com>
---
Changes in V2:
	- Change subject line
---
 drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c b/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c
index 12c1cd590056..e15182af2663 100644
--- a/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c
+++ b/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c
@@ -2236,7 +2236,7 @@ int phy_ConfigMACWithParaFile(struct adapter *Adapter, char *pFileName)
 
 	memset(pHalData->para_file_buf, 0, MAX_PARA_FILE_BUF_LEN);
 
-	if ((pHalData->mac_reg_len == 0) && (pHalData->mac_reg == NULL)) {
+	if ((pHalData->mac_reg_len == 0) && !pHalData->mac_reg) {
 		rtw_merge_string(file_path_bs, PATH_MAX, rtw_phy_file_path, pFileName);
 
 		if (rtw_is_file_readable(file_path_bs) == true) {
@@ -2311,7 +2311,7 @@ int phy_ConfigBBWithParaFile(
 
 	memset(pHalData->para_file_buf, 0, MAX_PARA_FILE_BUF_LEN);
 
-	if ((pBufLen != NULL) && (*pBufLen == 0) && (pBuf == NULL)) {
+	if (pBufLen && (*pBufLen == 0) && !pBuf) {
 		rtw_merge_string(file_path_bs, PATH_MAX, rtw_phy_file_path, pFileName);
 
 		if (rtw_is_file_readable(file_path_bs) == true) {
@@ -2336,7 +2336,7 @@ int phy_ConfigBBWithParaFile(
 			}
 		}
 	} else {
-		if ((pBufLen != NULL) && (*pBufLen == 0) && (pBuf == NULL)) {
+		if (pBufLen && (*pBufLen == 0) && !pBuf) {
 			memcpy(pHalData->para_file_buf, pBuf, *pBufLen);
 			rtStatus = _SUCCESS;
 		} else
@@ -2680,7 +2680,7 @@ int phy_ConfigBBWithPgParaFile(struct adapter *Adapter, char *pFileName)
 
 	memset(pHalData->para_file_buf, 0, MAX_PARA_FILE_BUF_LEN);
 
-	if ((pHalData->bb_phy_reg_pg_len == 0) && (pHalData->bb_phy_reg_pg == NULL)) {
+	if ((pHalData->bb_phy_reg_pg_len == 0) && !pHalData->bb_phy_reg_pg) {
 		rtw_merge_string(file_path_bs, PATH_MAX, rtw_phy_file_path, pFileName);
 
 		if (rtw_is_file_readable(file_path_bs) == true) {
@@ -2696,7 +2696,7 @@ int phy_ConfigBBWithPgParaFile(struct adapter *Adapter, char *pFileName)
 			}
 		}
 	} else {
-		if ((pHalData->bb_phy_reg_pg_len != 0) && (pHalData->bb_phy_reg_pg != NULL)) {
+		if ((pHalData->bb_phy_reg_pg_len != 0) && pHalData->bb_phy_reg_pg) {
 			memcpy(pHalData->para_file_buf, pHalData->bb_phy_reg_pg, pHalData->bb_phy_reg_pg_len);
 			rtStatus = _SUCCESS;
 		} else
@@ -2743,7 +2743,7 @@ int PHY_ConfigRFWithParaFile(
 
 	memset(pHalData->para_file_buf, 0, MAX_PARA_FILE_BUF_LEN);
 
-	if ((pBufLen != NULL) && (*pBufLen == 0) && (pBuf == NULL)) {
+	if (pBufLen && (*pBufLen == 0) && !pBuf) {
 		rtw_merge_string(file_path_bs, PATH_MAX, rtw_phy_file_path, pFileName);
 
 		if (rtw_is_file_readable(file_path_bs) == true) {
@@ -2768,7 +2768,7 @@ int PHY_ConfigRFWithParaFile(
 			}
 		}
 	} else {
-		if ((pBufLen != NULL) && (*pBufLen == 0) && (pBuf == NULL)) {
+		if (pBufLen && (*pBufLen == 0) && !pBuf) {
 			memcpy(pHalData->para_file_buf, pBuf, *pBufLen);
 			rtStatus = _SUCCESS;
 		} else
@@ -2925,7 +2925,7 @@ int PHY_ConfigRFWithTxPwrTrackParaFile(struct adapter *Adapter, char *pFileName)
 
 	memset(pHalData->para_file_buf, 0, MAX_PARA_FILE_BUF_LEN);
 
-	if ((pHalData->rf_tx_pwr_track_len == 0) && (pHalData->rf_tx_pwr_track == NULL)) {
+	if ((pHalData->rf_tx_pwr_track_len == 0) && !pHalData->rf_tx_pwr_track) {
 		rtw_merge_string(file_path_bs, PATH_MAX, rtw_phy_file_path, pFileName);
 
 		if (rtw_is_file_readable(file_path_bs) == true) {
@@ -3238,7 +3238,7 @@ int PHY_ConfigRFWithPowerLimitTableParaFile(
 
 	memset(pHalData->para_file_buf, 0, MAX_PARA_FILE_BUF_LEN);
 
-	if ((pHalData->rf_tx_pwr_lmt_len == 0) && (pHalData->rf_tx_pwr_lmt == NULL)) {
+	if ((pHalData->rf_tx_pwr_lmt_len == 0) && !pHalData->rf_tx_pwr_lmt) {
 		rtw_merge_string(file_path_bs, PATH_MAX, rtw_phy_file_path, pFileName);
 
 		if (rtw_is_file_readable(file_path_bs) == true) {
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 3/4] staging: rtl8723bs: hal: Replace variable==NULL comparisions with !variable
  2019-03-16 12:32 [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Himadri Pandya
  2019-03-16 12:32 ` [PATCH v2 1/4] staging: rtl8723bs: hal: Remove comparisions to NULL Himadri Pandya
  2019-03-16 12:32 ` [PATCH v2 2/4] staging: rtl8723bs: hal: Remove NULL comparisions Himadri Pandya
@ 2019-03-16 12:32 ` Himadri Pandya
  2019-03-16 12:32 ` [PATCH v2 4/4] staging: rtl8723bs: hal: Modify comparision to keep constant at right Himadri Pandya
  2019-03-16 13:25 ` [Outreachy kernel] [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Julia Lawall
  4 siblings, 0 replies; 7+ messages in thread
From: Himadri Pandya @ 2019-03-16 12:32 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, Himadri Pandya

Remove comparision to NULL. Suggested by Coccinelle.

Signed-off-by: Himadri Pandya <himadri18.07@gmail.com>
---
Changes in V2:
	- Change subject line
---
 drivers/staging/rtl8723bs/hal/hal_btcoex.c | 8 ++++----
 drivers/staging/rtl8723bs/hal/hal_com.c    | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/rtl8723bs/hal/hal_btcoex.c b/drivers/staging/rtl8723bs/hal/hal_btcoex.c
index 2b43f6d3c762..8eb28f97ebcc 100644
--- a/drivers/staging/rtl8723bs/hal/hal_btcoex.c
+++ b/drivers/staging/rtl8723bs/hal/hal_btcoex.c
@@ -75,7 +75,7 @@ static BTCDBGINFO GLBtcDbgInfo;
 
 static void DBG_BT_INFO_INIT(PBTCDBGINFO pinfo, u8 *pbuf, u32 size)
 {
-	if (NULL == pinfo)
+	if (!pinfo)
 		return;
 
 	memset(pinfo, 0, sizeof(BTCDBGINFO));
@@ -95,7 +95,7 @@ void DBG_BT_INFO(u8 *dbgmsg)
 
 	pinfo = &GLBtcDbgInfo;
 
-	if (NULL == pinfo->info)
+	if (!pinfo->info)
 		return;
 
 	msglen = strlen(dbgmsg);
@@ -1571,7 +1571,7 @@ void hal_btcoex_SetDBG(struct adapter *padapter, u32 *pDbgModule)
 	u32 i;
 
 
-	if (NULL == pDbgModule)
+	if (!pDbgModule)
 		return;
 
 	for (i = 0; i < BTC_MSG_MAX; i++)
@@ -1585,7 +1585,7 @@ u32 hal_btcoex_GetDBG(struct adapter *padapter, u8 *pStrBuf, u32 bufSize)
 	u32 leftSize;
 
 
-	if ((NULL == pStrBuf) || (0 == bufSize))
+	if (!pStrBuf || (0 == bufSize))
 		return 0;
 
 	pstr = pStrBuf;
diff --git a/drivers/staging/rtl8723bs/hal/hal_com.c b/drivers/staging/rtl8723bs/hal/hal_com.c
index 7f8ec55b08f1..b97b53c34449 100644
--- a/drivers/staging/rtl8723bs/hal/hal_com.c
+++ b/drivers/staging/rtl8723bs/hal/hal_com.c
@@ -18,7 +18,7 @@ u8 rtw_hal_data_init(struct adapter *padapter)
 	if (is_primary_adapter(padapter)) {	/* if (padapter->isprimary) */
 		padapter->hal_data_sz = sizeof(struct hal_com_data);
 		padapter->HalData = vzalloc(padapter->hal_data_sz);
-		if (padapter->HalData == NULL) {
+		if (!padapter->HalData) {
 			DBG_8192C("cannot alloc memory for HAL DATA\n");
 			return _FAIL;
 		}
@@ -909,7 +909,7 @@ s32 c2h_evt_read_88xx(struct adapter *adapter, u8 *buf)
 	int i;
 	u8 trigger;
 
-	if (buf == NULL)
+	if (!buf)
 		goto exit;
 
 	trigger = rtw_read8(adapter, REG_C2HEVT_CLEAR);
@@ -982,7 +982,7 @@ void rtw_hal_update_sta_rate_mask(struct adapter *padapter, struct sta_info *pst
 	u8 i, rf_type, limit;
 	u32 tx_ra_bitmap;
 
-	if (psta == NULL)
+	if (!psta)
 		return;
 
 	tx_ra_bitmap = 0;
@@ -1407,7 +1407,7 @@ bool GetHexValueFromString(char *szStr, u32 *pu4bVal, u32 *pu4bMove)
 	char *szScan = szStr;
 
 	/*  Check input parameter. */
-	if (szStr == NULL || pu4bVal == NULL || pu4bMove == NULL) {
+	if (!szStr || !pu4bVal || !pu4bMove) {
 		DBG_871X("GetHexValueFromString(): Invalid input arguments! szStr: %p, pu4bVal: %p, pu4bMove: %p\n",
 			 szStr, pu4bVal, pu4bMove);
 		return false;
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 4/4] staging: rtl8723bs: hal: Modify comparision to keep constant at right
  2019-03-16 12:32 [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Himadri Pandya
                   ` (2 preceding siblings ...)
  2019-03-16 12:32 ` [PATCH v2 3/4] staging: rtl8723bs: hal: Replace variable==NULL comparisions with !variable Himadri Pandya
@ 2019-03-16 12:32 ` Himadri Pandya
  2019-03-16 13:25 ` [Outreachy kernel] [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Julia Lawall
  4 siblings, 0 replies; 7+ messages in thread
From: Himadri Pandya @ 2019-03-16 12:32 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, Himadri Pandya

Modify comparision statement to keep the constant '0' on right hand side
to follow kernel coding style.

Signed-off-by: Himadri Pandya <himadri18.07@gmail.com>
---
Changes in V2:
	- Add this new change to the patchset
---
 drivers/staging/rtl8723bs/hal/hal_btcoex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/hal/hal_btcoex.c b/drivers/staging/rtl8723bs/hal/hal_btcoex.c
index 8eb28f97ebcc..406ec74adc2e 100644
--- a/drivers/staging/rtl8723bs/hal/hal_btcoex.c
+++ b/drivers/staging/rtl8723bs/hal/hal_btcoex.c
@@ -1585,7 +1585,7 @@ u32 hal_btcoex_GetDBG(struct adapter *padapter, u8 *pStrBuf, u32 bufSize)
 	u32 leftSize;
 
 
-	if (!pStrBuf || (0 == bufSize))
+	if (!pStrBuf || (bufSize == 0))
 		return 0;
 
 	pstr = pStrBuf;
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Outreachy kernel] [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons
  2019-03-16 13:25 ` [Outreachy kernel] [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Julia Lawall
@ 2019-03-16 13:21   ` Himadri Pandya
  0 siblings, 0 replies; 7+ messages in thread
From: Himadri Pandya @ 2019-03-16 13:21 UTC (permalink / raw)
  To: Julia Lawall; +Cc: Greg KH, outreachy-kernel

[-- Attachment #1: Type: text/plain, Size: 2717 bytes --]

On Sat, Mar 16, 2019 at 6:55 PM Julia Lawall <julia.lawall@lip6.fr> wrote:

>
>
> On Sat, 16 Mar 2019, Himadri Pandya wrote:
>
> > - This patchset removes comparision to NULL in various files of
> > drivers/staging/rtl8723bs/hal/ .
> >
> > - The changes are broken into separate patches to keep the length of
> > each patch below/near 100 lines for convinient reviewing.
> >
> > v2:
> > - Change subject lines of patches
> > - Include a new patch to modify comparision with a constant
> >
> > Himadri Pandya (4):
> >   staging: rtl8723bs: hal: Remove comparisions to NULL
> >   staging: rtl8723bs: hal: Remove NULL comparisions
> >   staging: rtl8723bs: hal: Replace variable==NULL comparisions with
> >     !variable
>
> Sorry to be picky, but this is not the best way to make unique subjects.
> The different patches affect different files, so you can put something
> related to the affected file(s) in the subject line.  You may just want to
> make a series of one file per patch, rather than aiming for 100 lines of
> changes.
>
> julia
>

That is absolutely a better option. I will do that and send a new version.

Thank you.

- Himadri


>
> >   staging: rtl8723bs: hal: Modify comparision to keep constant at right
> >
> >  drivers/staging/rtl8723bs/hal/hal_btcoex.c     |  8 ++++----
> >  drivers/staging/rtl8723bs/hal/hal_com.c        |  8 ++++----
> >  drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 18 +++++++++---------
> >  drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c   |  8 ++++----
> >  drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c |  6 +++---
> >  5 files changed, 24 insertions(+), 24 deletions(-)
> >
> > --
> > 2.17.1
> >
> > --
> > You received this message because you are subscribed to the Google
> Groups "outreachy-kernel" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> an email to outreachy-kernel+unsubscribe@googlegroups.com.
> > To post to this group, send email to outreachy-kernel@googlegroups.com.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/outreachy-kernel/20190316123251.24875-1-himadri18.07%40gmail.com
> .
> > For more options, visit https://groups.google.com/d/optout.
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/outreachy-kernel/alpine.DEB.2.21.1903161424100.2487%40hadrien
> .
> For more options, visit https://groups.google.com/d/optout.
>

[-- Attachment #2: Type: text/html, Size: 4217 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Outreachy kernel] [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons
  2019-03-16 12:32 [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Himadri Pandya
                   ` (3 preceding siblings ...)
  2019-03-16 12:32 ` [PATCH v2 4/4] staging: rtl8723bs: hal: Modify comparision to keep constant at right Himadri Pandya
@ 2019-03-16 13:25 ` Julia Lawall
  2019-03-16 13:21   ` Himadri Pandya
  4 siblings, 1 reply; 7+ messages in thread
From: Julia Lawall @ 2019-03-16 13:25 UTC (permalink / raw)
  To: Himadri Pandya; +Cc: gregkh, outreachy-kernel



On Sat, 16 Mar 2019, Himadri Pandya wrote:

> - This patchset removes comparision to NULL in various files of
> drivers/staging/rtl8723bs/hal/ .
>
> - The changes are broken into separate patches to keep the length of
> each patch below/near 100 lines for convinient reviewing.
>
> v2:
> - Change subject lines of patches
> - Include a new patch to modify comparision with a constant
>
> Himadri Pandya (4):
>   staging: rtl8723bs: hal: Remove comparisions to NULL
>   staging: rtl8723bs: hal: Remove NULL comparisions
>   staging: rtl8723bs: hal: Replace variable==NULL comparisions with
>     !variable

Sorry to be picky, but this is not the best way to make unique subjects.
The different patches affect different files, so you can put something
related to the affected file(s) in the subject line.  You may just want to
make a series of one file per patch, rather than aiming for 100 lines of
changes.

julia

>   staging: rtl8723bs: hal: Modify comparision to keep constant at right
>
>  drivers/staging/rtl8723bs/hal/hal_btcoex.c     |  8 ++++----
>  drivers/staging/rtl8723bs/hal/hal_com.c        |  8 ++++----
>  drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 18 +++++++++---------
>  drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c   |  8 ++++----
>  drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.c |  6 +++---
>  5 files changed, 24 insertions(+), 24 deletions(-)
>
> --
> 2.17.1
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20190316123251.24875-1-himadri18.07%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-03-16 14:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-16 12:32 [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Himadri Pandya
2019-03-16 12:32 ` [PATCH v2 1/4] staging: rtl8723bs: hal: Remove comparisions to NULL Himadri Pandya
2019-03-16 12:32 ` [PATCH v2 2/4] staging: rtl8723bs: hal: Remove NULL comparisions Himadri Pandya
2019-03-16 12:32 ` [PATCH v2 3/4] staging: rtl8723bs: hal: Replace variable==NULL comparisions with !variable Himadri Pandya
2019-03-16 12:32 ` [PATCH v2 4/4] staging: rtl8723bs: hal: Modify comparision to keep constant at right Himadri Pandya
2019-03-16 13:25 ` [Outreachy kernel] [PATCH v2 0/4] staging: rtl8723bs: hal: Remove and modify NULL comparisons Julia Lawall
2019-03-16 13:21   ` Himadri Pandya

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.