public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: staging: rtl8712: remove unnecessory else statement
@ 2015-06-19  8:22 Sunil Shahu
  2015-06-19 17:05 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Sunil Shahu @ 2015-06-19  8:22 UTC (permalink / raw)
  To: gregkh; +Cc: Larry.Finger, florian.c.schilhabel, devel, linux-kernel

"else" statement after "if" is unnecessory, hence removed.

Signed-off-by: Sunil Shahu <shshahu@gmail.com>
---
 drivers/staging/rtl8712/rtl871x_security.c | 35 ++++++++++++++----------------
 1 file changed, 16 insertions(+), 19 deletions(-)

diff --git a/drivers/staging/rtl8712/rtl871x_security.c b/drivers/staging/rtl8712/rtl871x_security.c
index bcd1a51..21465c9 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)
-- 
1.9.1


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

* Re: [PATCH] drivers: staging: rtl8712: remove unnecessory else statement
  2015-06-19  8:22 [PATCH] drivers: staging: rtl8712: remove unnecessory else statement Sunil Shahu
@ 2015-06-19 17:05 ` Greg KH
  2015-06-22 11:28   ` [PATCH v2] drivers: staging: rtl8712: remove unnecessary " Sunil Shahu
  0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2015-06-19 17:05 UTC (permalink / raw)
  To: Sunil Shahu; +Cc: devel, florian.c.schilhabel, linux-kernel, Larry.Finger

On Fri, Jun 19, 2015 at 01:52:43PM +0530, Sunil Shahu wrote:
> "else" statement after "if" is unnecessory, hence removed.
> 
> Signed-off-by: Sunil Shahu <shshahu@gmail.com>
> ---
>  drivers/staging/rtl8712/rtl871x_security.c | 35 ++++++++++++++----------------
>  1 file changed, 16 insertions(+), 19 deletions(-)

You sent 2 patches, with identical subjects, yet no indication of which
to take, so I'm going to delete both of them from my queue and wait for
you to send a v2 patch like should be properly done.

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/

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

* [PATCH v2] drivers: staging: rtl8712: remove unnecessary else statement
  2015-06-19 17:05 ` Greg KH
@ 2015-06-22 11:28   ` Sunil Shahu
  2015-06-22 17:34     ` Dan Carpenter
  0 siblings, 1 reply; 6+ messages in thread
From: Sunil Shahu @ 2015-06-22 11:28 UTC (permalink / raw)
  To: gregkh; +Cc: Larry.Finger, florian.c.schilhabel, devel, linux-kernel

"else" statement after "if" is unnecessary, hence removed.

Signed-off-by: Sunil Shahu <shshahu@gmail.com>
---
 drivers/staging/rtl8712/rtl871x_security.c | 35 ++++++++++++++----------------
 1 file changed, 16 insertions(+), 19 deletions(-)

diff --git a/drivers/staging/rtl8712/rtl871x_security.c b/drivers/staging/rtl8712/rtl871x_security.c
index bcd1a51..21465c9 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)
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH v2] drivers: staging: rtl8712: remove unnecessary else statement
  2015-06-22 11:28   ` [PATCH v2] drivers: staging: rtl8712: remove unnecessary " Sunil Shahu
@ 2015-06-22 17:34     ` Dan Carpenter
  2015-06-26 13:05       ` Sunil Shahu
  0 siblings, 1 reply; 6+ messages in thread
From: Dan Carpenter @ 2015-06-22 17:34 UTC (permalink / raw)
  To: Sunil Shahu
  Cc: gregkh, devel, florian.c.schilhabel, linux-kernel, Larry.Finger

On Mon, Jun 22, 2015 at 04:58:41PM +0530, Sunil Shahu wrote:
> "else" statement after "if" is unnecessary, hence removed.
> 
> Signed-off-by: Sunil Shahu <shshahu@gmail.com>
> ---
>  drivers/staging/rtl8712/rtl871x_security.c | 35 ++++++++++++++----------------
>  1 file changed, 16 insertions(+), 19 deletions(-)
> 
> diff --git a/drivers/staging/rtl8712/rtl871x_security.c b/drivers/staging/rtl8712/rtl871x_security.c
> index bcd1a51..21465c9 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;
                ^^^^^^^^^^
In another follow on patch you can get rid of this.  It is nonsense and
it isn't used.


> +	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)
                     ^^^^^^^^^^^^^^^^^^
We always re-initialize c here.

> +			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;
>  }

regards,
dan carpenter

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH v2] drivers: staging: rtl8712: remove unnecessary else statement
  2015-06-22 17:34     ` Dan Carpenter
@ 2015-06-26 13:05       ` Sunil Shahu
  2015-06-26 13:17         ` Dan Carpenter
  0 siblings, 1 reply; 6+ messages in thread
From: Sunil Shahu @ 2015-06-26 13:05 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: gregkh, devel, florian.c.schilhabel, linux-kernel, Larry.Finger

Hi Dan,

On Mon, 2015-06-22 at 20:34 +0300, Dan Carpenter wrote:
> > +     u32 c = 0x12340000;
>                 ^^^^^^^^^^
> In another follow on patch you can get rid of this.  It is nonsense
> and
> it isn't used.

By "follow on patch", did you mean that I should send v3 revision of my
patch or send a new patch after this patch gets applied to the tree?


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

* Re: [PATCH v2] drivers: staging: rtl8712: remove unnecessary else statement
  2015-06-26 13:05       ` Sunil Shahu
@ 2015-06-26 13:17         ` Dan Carpenter
  0 siblings, 0 replies; 6+ messages in thread
From: Dan Carpenter @ 2015-06-26 13:17 UTC (permalink / raw)
  To: Sunil Shahu
  Cc: gregkh, devel, florian.c.schilhabel, linux-kernel, Larry.Finger

On Fri, Jun 26, 2015 at 06:35:11PM +0530, Sunil Shahu wrote:
> Hi Dan,
> 
> On Mon, 2015-06-22 at 20:34 +0300, Dan Carpenter wrote:
> > > +     u32 c = 0x12340000;
> >                 ^^^^^^^^^^
> > In another follow on patch you can get rid of this.  It is nonsense
> > and
> > it isn't used.
> 
> By "follow on patch", did you mean that I should send v3 revision of my
> patch or send a new patch after this patch gets applied to the tree?

Send a new patch.  You don't have to wait, you can just assume it will
be merged and build on top of it.

It will take a few weeks before your patch actually gets merged.

regards,
dan carpenter


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

end of thread, other threads:[~2015-06-26 13:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-19  8:22 [PATCH] drivers: staging: rtl8712: remove unnecessory else statement Sunil Shahu
2015-06-19 17:05 ` Greg KH
2015-06-22 11:28   ` [PATCH v2] drivers: staging: rtl8712: remove unnecessary " Sunil Shahu
2015-06-22 17:34     ` Dan Carpenter
2015-06-26 13:05       ` Sunil Shahu
2015-06-26 13:17         ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox