* [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses
@ 2021-04-11 4:33 Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 1/3] " Mitali Borkar
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Mitali Borkar @ 2021-04-11 4:33 UTC (permalink / raw)
To: gregkh; +Cc: linux-staging, linux-kernel, outreachy-kernel, mitali_s
This patch fixes style issues
Changes from v1:-
[Patch 1/3]:- Removed unnecessary parentheses around boolean expressions
[Patch 2/3]:- No changes
[Patch 3/3]:- No changes
Mitali Borkar (3):
staging: rtl8192e: remove unnecessary parentheses
staging: rtl8192e: remove unnecessary ftrace-like logging
staging: rtl8192e: remove unncessary parentheses
drivers/staging/rtl8192e/rtl819x_HTProc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
2.30.2
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/3] staging: rtl8192e: remove unnecessary parentheses
2021-04-11 4:33 [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Mitali Borkar
@ 2021-04-11 4:34 ` Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 2/3] staging: rtl8192e: remove unnecessary ftrace-like logging Mitali Borkar
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Mitali Borkar @ 2021-04-11 4:34 UTC (permalink / raw)
To: gregkh; +Cc: linux-staging, linux-kernel, outreachy-kernel, mitali_s
Removed unnecessary parentheses around '!xyz' as '!' has higher
precedance than '||'
Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
---
Changes from v1:- removed unnecessary parentheses around boolean
expression
drivers/staging/rtl8192e/rtl819x_HTProc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8192e/rtl819x_HTProc.c b/drivers/staging/rtl8192e/rtl819x_HTProc.c
index b1fa8e9a4f28..431202927036 100644
--- a/drivers/staging/rtl8192e/rtl819x_HTProc.c
+++ b/drivers/staging/rtl8192e/rtl819x_HTProc.c
@@ -276,7 +276,7 @@ void HTConstructCapabilityElement(struct rtllib_device *ieee, u8 *posHTCap,
struct rt_hi_throughput *pHT = ieee->pHTInfo;
struct ht_capab_ele *pCapELE = NULL;
- if ((!posHTCap) || (!pHT)) {
+ if (!posHTCap || !pHT) {
netdev_warn(ieee->dev,
"%s(): posHTCap and pHTInfo are null\n", __func__);
return;
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/3] staging: rtl8192e: remove unnecessary ftrace-like logging
2021-04-11 4:33 [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 1/3] " Mitali Borkar
@ 2021-04-11 4:34 ` Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 3/3] staging: rtl8192e: remove unncessary parentheses Mitali Borkar
2021-04-11 6:40 ` [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Greg KH
3 siblings, 0 replies; 5+ messages in thread
From: Mitali Borkar @ 2021-04-11 4:34 UTC (permalink / raw)
To: gregkh; +Cc: linux-staging, linux-kernel, outreachy-kernel, mitali_s
Removed unncessary ftrace-like logging by simply deleting that statement
as we have other modes of logging like ftrace.
Reported by checkpatch.
Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
---
Changes from v1:- No changes made.
drivers/staging/rtl8192e/rtl819x_HTProc.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/drivers/staging/rtl8192e/rtl819x_HTProc.c b/drivers/staging/rtl8192e/rtl819x_HTProc.c
index 0b1e92f17805..89d0e9ec188d 100644
--- a/drivers/staging/rtl8192e/rtl819x_HTProc.c
+++ b/drivers/staging/rtl8192e/rtl819x_HTProc.c
@@ -630,7 +630,6 @@ void HTInitializeHTInfo(struct rtllib_device *ieee)
{
struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
- netdev_vdbg(ieee->dev, "%s()\n", __func__);
pHTInfo->bCurrentHTSupport = false;
pHTInfo->bCurBW40MHz = false;
@@ -698,7 +697,6 @@ void HTResetSelfAndSavePeerSetting(struct rtllib_device *ieee,
struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
u8 bIOTAction = 0;
- netdev_vdbg(ieee->dev, "%s()\n", __func__);
/* unmark bEnableHT flag here is the same reason why unmarked in
* function rtllib_softmac_new_net. WB 2008.09.10
*/
@@ -832,8 +830,6 @@ static void HTSetConnectBwModeCallback(struct rtllib_device *ieee)
{
struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
- netdev_vdbg(ieee->dev, "%s()\n", __func__);
-
if (pHTInfo->bCurBW40MHz) {
if (pHTInfo->CurSTAExtChnlOffset == HT_EXTCHNL_OFFSET_UPPER)
ieee->set_chan(ieee->dev,
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 3/3] staging: rtl8192e: remove unncessary parentheses
2021-04-11 4:33 [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 1/3] " Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 2/3] staging: rtl8192e: remove unnecessary ftrace-like logging Mitali Borkar
@ 2021-04-11 4:34 ` Mitali Borkar
2021-04-11 6:40 ` [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Greg KH
3 siblings, 0 replies; 5+ messages in thread
From: Mitali Borkar @ 2021-04-11 4:34 UTC (permalink / raw)
To: gregkh; +Cc: linux-staging, linux-kernel, outreachy-kernel, mitali_s
Removed unnecessary parentheses because they must be used only when it
is necessary or they improve readability.
Reported by checkpatch.
Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
---
Changes from v1:- No changes.
drivers/staging/rtl8192e/rtl819x_HTProc.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/rtl8192e/rtl819x_HTProc.c b/drivers/staging/rtl8192e/rtl819x_HTProc.c
index 89d0e9ec188d..b1fa8e9a4f28 100644
--- a/drivers/staging/rtl8192e/rtl819x_HTProc.c
+++ b/drivers/staging/rtl8192e/rtl819x_HTProc.c
@@ -287,7 +287,7 @@ void HTConstructCapabilityElement(struct rtllib_device *ieee, u8 *posHTCap,
u8 EWC11NHTCap[] = {0x00, 0x90, 0x4c, 0x33};
memcpy(posHTCap, EWC11NHTCap, sizeof(EWC11NHTCap));
- pCapELE = (struct ht_capab_ele *)&(posHTCap[4]);
+ pCapELE = (struct ht_capab_ele *)&posHTCap[4];
*len = 30 + 2;
} else {
pCapELE = (struct ht_capab_ele *)posHTCap;
@@ -646,13 +646,13 @@ void HTInitializeHTInfo(struct rtllib_device *ieee)
pHTInfo->CurrentMPDUDensity = pHTInfo->MPDU_Density;
pHTInfo->CurrentAMPDUFactor = pHTInfo->AMPDU_Factor;
- memset((void *)(&(pHTInfo->SelfHTCap)), 0,
+ memset((void *)(&pHTInfo->SelfHTCap), 0,
sizeof(pHTInfo->SelfHTCap));
- memset((void *)(&(pHTInfo->SelfHTInfo)), 0,
+ memset((void *)(&pHTInfo->SelfHTInfo), 0,
sizeof(pHTInfo->SelfHTInfo));
- memset((void *)(&(pHTInfo->PeerHTCapBuf)), 0,
+ memset((void *)(&pHTInfo->PeerHTCapBuf), 0,
sizeof(pHTInfo->PeerHTCapBuf));
- memset((void *)(&(pHTInfo->PeerHTInfoBuf)), 0,
+ memset((void *)(&pHTInfo->PeerHTInfoBuf), 0,
sizeof(pHTInfo->PeerHTInfoBuf));
pHTInfo->bSwBwInProgress = false;
@@ -668,7 +668,7 @@ void HTInitializeHTInfo(struct rtllib_device *ieee)
pHTInfo->IOTRaFunc = 0;
{
- u8 *RegHTSuppRateSets = &(ieee->RegHTSuppRateSet[0]);
+ u8 *RegHTSuppRateSets = &ieee->RegHTSuppRateSet[0];
RegHTSuppRateSets[0] = 0xFF;
RegHTSuppRateSets[1] = 0xFF;
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses
2021-04-11 4:33 [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Mitali Borkar
` (2 preceding siblings ...)
2021-04-11 4:34 ` [PATCH v2 3/3] staging: rtl8192e: remove unncessary parentheses Mitali Borkar
@ 2021-04-11 6:40 ` Greg KH
3 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2021-04-11 6:40 UTC (permalink / raw)
To: Mitali Borkar; +Cc: linux-staging, linux-kernel, outreachy-kernel, mitali_s
On Sun, Apr 11, 2021 at 10:03:40AM +0530, Mitali Borkar wrote:
> This patch fixes style issues
> Changes from v1:-
> [Patch 1/3]:- Removed unnecessary parentheses around boolean expressions
> [Patch 2/3]:- No changes
> [Patch 3/3]:- No changes
>
> Mitali Borkar (3):
> staging: rtl8192e: remove unnecessary parentheses
> staging: rtl8192e: remove unnecessary ftrace-like logging
> staging: rtl8192e: remove unncessary parentheses
You have two patches in this series that do different things, yet have
the same subject line (with a misspelling in one). Please make them
unique.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-04-11 6:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-11 4:33 [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 1/3] " Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 2/3] staging: rtl8192e: remove unnecessary ftrace-like logging Mitali Borkar
2021-04-11 4:34 ` [PATCH v2 3/3] staging: rtl8192e: remove unncessary parentheses Mitali Borkar
2021-04-11 6:40 ` [PATCH v2 0/3] staging: rtl8192e: remove unnecessary parentheses Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox