lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Tue, 13 Mar 2012 15:44:11 -0700
From:	Greg KH <gregkh@...uxfoundation.org>
To:	Andrew Miller <amiller@...lx.com>
Cc:	devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] Staging: rtl8187se: r8180_core.c: Fix spacing issue

On Sat, Mar 10, 2012 at 11:56:38PM -0500, Andrew Miller wrote:
> Fix spacing coding style issues
> 
> Signed-off-by: Andrew Miller <amiller@...lx.com>
> ---
>  drivers/staging/rtl8187se/r8180_core.c |   46 +++++++++++++++++--------------
>  1 files changed, 25 insertions(+), 21 deletions(-)
> 
> diff --git a/drivers/staging/rtl8187se/r8180_core.c b/drivers/staging/rtl8187se/r8180_core.c
> index 05f25eb..6a0c592 100644
> --- a/drivers/staging/rtl8187se/r8180_core.c
> +++ b/drivers/staging/rtl8187se/r8180_core.c
> @@ -2617,28 +2617,32 @@ void watch_dog_adaptive(unsigned long data)
>  }
>  
>  static CHANNEL_LIST ChannelPlan[] = {
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	36,40,44,48,52,56,60,64},19},		/* FCC */
> -	{{1,2,3,4,5,6,7,8,9,10,11},11},		/* IC */
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	12,13,36,40,44,48,52,56,60,64},21},	/* ETSI */
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	12,13,36,40,44,48,52,56,60,64},21},	/* Spain. Change to ETSI. */
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	12,13,36,40,44,48,52,56,60,64},21},	/* France. Change to ETSI. */
> -	{{14,36,40,44,48,52,56,60,64},9},	/* MKK */
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	12,13,14, 36,40,44,48,52,56,60,64},22}, /* MKK1 */
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	12,13,36,40,44,48,52,56,60,64},21},	/* Israel. */
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	12,13,34,38,42,46},17},			/* For 11a , TELEC */
> -	{{1,2,3,4,5,6,7,8,9,10,11,
> -	12,13,14},14},  /* For Global Domain. 1-11:active scan,
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	36, 40, 44, 48, 52, 56, 60, 64}, 19},	/* FCC */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}, 11}, /* IC */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	12, 13, 36, 40, 44, 48, 52, 56, 60, 64}, 21}, /* ETSI */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	12, 13, 36, 40, 44, 48, 52, 56, 60, 64}, 21}, /* Spain. Change
> +						       * to ETSI. */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	12, 13, 36, 40, 44, 48, 52, 56, 60, 64}, 21}, /* France. Change
> +						       * to ETSI. */
> +	{{ 14, 36, 40, 44, 48, 52, 56, 60, 64}, 9}, /* MKK */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	12, 13, 14, 36, 40, 44, 48, 52, 56, 60, 64}, 22}, /* MKK1 */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	12, 13, 36, 40, 44, 48, 52, 56, 60, 64}, 21}, /* Israel. */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	12, 13, 34, 38, 42, 46}, 17},		/* For 11a , TELEC */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
> +	12, 13, 14}, 14},  /* For Global Domain. 1-11:active scan,

That's easier to read?  Not to me, how about putting them each on one
line?  Yes, that makes for longer lines, but it makes more sense, right?

And what's with the first ' ' on each set of numbers?

>  			 * 12-14 passive scan. //+YJ, 080626 */
> -	{{1,2,3,4,5,6,7,8,9,10,11,12,13},13} /* world wide 13: ch1~ch11 active
> -					      * scan, ch12~13 passive //lzm
> -					      * add 080826 */
> +	{{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}, 13} /* world wide 13:
> +							    * ch1~ch11 active
> +					      		    * scan, ch12~13
> +					      		    * passive //lzm
> +					      		    * add 080826 */

That makes the comment impossible to read.

Please be smarter, this is to be done to make it easy for humans, not to
just blindly follow a tool's "warnings".

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ