[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220919141624.8765-1-aruna.hewapathirane@gmail.com>
Date: Mon, 19 Sep 2022 10:16:24 -0400
From: Aruna Hewapathirane <aruna.hewapathirane@...il.com>
To: gregkh@...uxfoundation.org
Cc: f3sch.git@...look.com, guozihua@...wei.com,
linux-staging@...ts.linux.dev, aruna.hewapathirane@...il.com,
linux-kernel@...r.kernel.org
Subject: [PATCH 3/3] staging: rtl8192e: spaces preferred around that '<<' (ctx:VxV)
This patch fixes 2 checkpatch CHECK issues
Signed-off-by: Aruna Hewapathirane <aruna.hewapathirane@...il.com>
---
drivers/staging/rtl8192e/rtllib_tx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8192e/rtllib_tx.c b/drivers/staging/rtl8192e/rtllib_tx.c
index f651947f6b44..933f347fc17e 100644
--- a/drivers/staging/rtl8192e/rtllib_tx.c
+++ b/drivers/staging/rtl8192e/rtllib_tx.c
@@ -818,10 +818,10 @@ static int rtllib_xmit_inter(struct sk_buff *skb, struct net_device *dev)
cpu_to_le16(rtllib_query_seqnum(ieee, skb_frag,
header.addr1));
frag_hdr->seq_ctl =
- cpu_to_le16(le16_to_cpu(frag_hdr->seq_ctl)<<4 | i);
+ cpu_to_le16(le16_to_cpu(frag_hdr->seq_ctl) << 4 | i);
} else {
frag_hdr->seq_ctl =
- cpu_to_le16(ieee->seq_ctrl[0]<<4 | i);
+ cpu_to_le16(ieee->seq_ctrl[0] << 4 | i);
}
/* Put a SNAP header on the first fragment */
if (i == 0) {
--
2.30.2
Powered by blists - more mailing lists