* [PATCH] drivers: staging: rtl8712: Resolved kernel coding style warnings
@ 2015-06-18 13:27 Sunil Shahu
2015-06-19 4:11 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Sunil Shahu @ 2015-06-18 13:27 UTC (permalink / raw)
To: gregkh; +Cc: Larry.Finger, florian.c.schilhabel, devel, linux-kernel
1) "else" statement after "if" is unnecessory, hence removed.
2) Fixed line over 80 characters warning.
Signed-off-by: Sunil Shahu <shshahu@gmail.com>
---
drivers/staging/rtl8712/rtl871x_security.c | 39 ++++++++++++++----------------
1 file changed, 18 insertions(+), 21 deletions(-)
diff --git a/drivers/staging/rtl8712/rtl871x_security.c b/drivers/staging/rtl8712/rtl871x_security.c
index bcd1a51..0702caa 100644
--- a/drivers/staging/rtl8712/rtl871x_security.c
+++ b/drivers/staging/rtl8712/rtl871x_security.c
@@ -124,28 +124,25 @@ static u8 crc32_reverseBit(u8 data)
static void crc32_init(void)
{
+ sint i, j;
+ u32 c = 0x12340000;
+ u8 *p = (u8 *)&c, *p1;
+ u8 k;
+
if (bcrc32initialized == 1)
return;
- else {
- sint i, j;
- u32 c;
- u8 *p = (u8 *)&c, *p1;
- u8 k;
-
- c = 0x12340000;
- for (i = 0; i < 256; ++i) {
- k = crc32_reverseBit((u8)i);
- for (c = ((u32)k) << 24, j = 8; j > 0; --j)
- c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY :
- (c << 1);
- p1 = (u8 *)&crc32_table[i];
- p1[0] = crc32_reverseBit(p[3]);
- p1[1] = crc32_reverseBit(p[2]);
- p1[2] = crc32_reverseBit(p[1]);
- p1[3] = crc32_reverseBit(p[0]);
- }
- bcrc32initialized = 1;
+
+ for (i = 0; i < 256; ++i) {
+ k = crc32_reverseBit((u8)i);
+ for (c = ((u32)k) << 24, j = 8; j > 0; --j)
+ c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY : (c << 1);
+ p1 = (u8 *)&crc32_table[i];
+ p1[0] = crc32_reverseBit(p[3]);
+ p1[1] = crc32_reverseBit(p[2]);
+ p1[2] = crc32_reverseBit(p[1]);
+ p1[3] = crc32_reverseBit(p[0]);
}
+ bcrc32initialized = 1;
}
static u32 getcrc32(u8 *buf, u32 len)
@@ -992,8 +989,8 @@ static void construct_mic_header2(u8 *mic_header2, u8 *mpdu, sint a4_exists,
/* Builds the last MIC header block from */
/* header fields. */
/************************************************/
-static void construct_ctr_preload(u8 *ctr_preload, sint a4_exists, sint qc_exists,
- u8 *mpdu, u8 *pn_vector, sint c)
+static void construct_ctr_preload(u8 *ctr_preload, sint a4_exists,
+ sint qc_exists, u8 *mpdu, u8 *pn_vector, sint c)
{
sint i;
--
1.9.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] drivers: staging: rtl8712: Resolved kernel coding style warnings
2015-06-18 13:27 [PATCH] drivers: staging: rtl8712: Resolved kernel coding style warnings Sunil Shahu
@ 2015-06-19 4:11 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2015-06-19 4:11 UTC (permalink / raw)
To: Sunil Shahu; +Cc: Larry.Finger, florian.c.schilhabel, devel, linux-kernel
On Thu, Jun 18, 2015 at 06:57:34PM +0530, Sunil Shahu wrote:
> 1) "else" statement after "if" is unnecessory, hence removed.
> 2) Fixed line over 80 characters warning.
That's two different things, this should be 2 different patches.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-19 4:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-18 13:27 [PATCH] drivers: staging: rtl8712: Resolved kernel coding style warnings Sunil Shahu
2015-06-19 4:11 ` Greg KH
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®