linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Sunghoon Cho <ywhsbliss@gmail.com>
Cc: devel@driverdev.osuosl.org, linux-wireless@vger.kernel.org,
	johnny.kim@atmel.com, chris.park@atmel.com, Rachel.kim@atmel.com,
	dean.lee@atmel.com
Subject: Re: [PATCH 1/5] staging: wilc1000: change commenting styles.
Date: Wed, 17 Jun 2015 21:19:21 -0700	[thread overview]
Message-ID: <20150618041921.GA10663@kroah.com> (raw)
In-Reply-To: <eed9181385a22bfe580dbe1a0cca17d9bb694209.1434526056.git.ywhsbliss@gmail.com>

On Wed, Jun 17, 2015 at 04:28:51PM +0900, Sunghoon Cho wrote:
> This patch changes commenting style to Linux preferred C89 style.
> 
> Signed-off-by: Sunghoon Cho <ywhsbliss@gmail.com>
> ---
>  drivers/staging/wilc1000/wilc_wlan_if.h | 721 ++++++++++++++++++--------------
>  1 file changed, 397 insertions(+), 324 deletions(-)
> 
> diff --git a/drivers/staging/wilc1000/wilc_wlan_if.h b/drivers/staging/wilc1000/wilc_wlan_if.h
> index ea0ec41..c7143cd 100644
> --- a/drivers/staging/wilc1000/wilc_wlan_if.h
> +++ b/drivers/staging/wilc1000/wilc_wlan_if.h
> @@ -1,17 +1,13 @@
> -/* ////////////////////////////////////////////////////////////////////////// */
> -/*  */
> -/* Copyright (c) Atmel Corporation.  All rights reserved. */
> -/*  */
> -/* Module Name:  wilc_wlan_if.h */
> -/*  */
> -/*  */
> -/* ///////////////////////////////////////////////////////////////////////// */
> +/*
> + * Copyright (c) Atmel Corporation. All rights reserved.
> + * Module Name:  wilc_wlan_if.h
> + */
>  
>  
>  #ifndef WILC_WLAN_IF_H
>  #define WILC_WLAN_IF_H
>  
> -/*bug 3887: [AP] Allow Management frames to be passed to the host*/
> +/* bug 3887: [AP] Allow Management frames to be passed to the host */
>  #define WILC_AP_EXTERNAL_MLME
>  #define WILC_P2P
>  #define TCP_ENHANCEMENTS
> @@ -24,11 +20,7 @@
>  #include "linux_wlan_common.h"
>  
>  
> -/********************************************
> - *
> - *      Debug Flags
> - *
> - ********************************************/
> +/* Debug Flags */
>  
>  #define N_INIT		0x00000001
>  #define N_ERR		0x00000002
> @@ -36,31 +28,19 @@
>  #define N_INTR		0x00000008
>  #define N_RXQ		0x00000010
>  
> -/********************************************
> - *
> - *      Host Interface Defines
> - *
> - ********************************************/
> +/* Host Interface Defines */
>  
>  #define HIF_SDIO           (0)
>  #define HIF_SPI            (1 << 0)
>  #define HIF_SDIO_GPIO_IRQ  (1 << 2)
>  
>  
> -/********************************************
> - *
> - *      Tx/Rx Buffer Size Defines
> - *
> - ********************************************/
> +/* Tx/Rx Buffer Size Defines */
>  
>  #define CE_TX_BUFFER_SIZE (64 * 1024)
>  #define CE_RX_BUFFER_SIZE (384 * 1024)
>  
> -/********************************************
> - *
> - *      Wlan Interface Defines
> - *
> - ********************************************/
> +/* Wlan Interface Defines */
>  
>  typedef struct {
>  	uint32_t read_write: 1;
> @@ -97,7 +77,7 @@ typedef struct {
>  	void (*os_enter_cs)(void *);
>  	void (*os_leave_cs)(void *);
>  
> -	/*Added by Amr - BugID_4720*/
> +	/* Added by Amr - BugID_4720 */
>  	void (*os_spin_lock)(void *, unsigned long *);
>  	void (*os_spin_unlock)(void *, unsigned long *);
>  
> @@ -146,7 +126,7 @@ typedef struct {
>  	uint32_t tx_buffer_size;
>  	void *txq_critical_section;
>  
> -	/*Added by Amr - BugID_4720*/
> +	/* Added by Amr - BugID_4720 */
>  	void *txq_add_to_head_critical_section;
>  	void *txq_spin_lock;
>  
> @@ -218,7 +198,7 @@ typedef struct {
>  	int (*wlan_cfg_set)(int, uint32_t, uint8_t *, uint32_t, int, uint32_t);
>  	int (*wlan_cfg_get)(int, uint32_t, int, uint32_t);
>  	int (*wlan_cfg_get_value)(uint32_t, uint8_t *, uint32_t);
> -	/*Bug3959: transmitting mgmt frames received from host*/
> +	/* Bug3959: transmitting mgmt frames received from host */
>  	#if defined(WILC_AP_EXTERNAL_MLME) || defined(WILC_P2P)
>  	int (*wlan_add_mgmt_to_tx_que)(void *, uint8_t *, uint32_t, wilc_tx_complete_func_t);
>  
> @@ -229,11 +209,7 @@ typedef struct {
>  	#endif
>  } wilc_wlan_oup_t;
>  
> -/********************************************
> - *
> - *      Wlan Configuration ID
> - *
> - ********************************************/
> +/* Wlan Configuration ID */
>  
>  #define MAX_SSID_LEN            33
>  #define MAX_RATES_SUPPORTED     12
> @@ -283,15 +259,15 @@ typedef enum {
>  } G_OPERATING_MODE_T;
>  
>  typedef enum {
> -	G_SHORT_PREAMBLE = 0,   /* Short Preamble          */
> -	G_LONG_PREAMBLE  = 1,           /* Long Preamble           */
> -	G_AUTO_PREAMBLE  = 2,           /* Auto Preamble Selection */
> +	G_SHORT_PREAMBLE = 0,	/* Short Preamble */
> +	G_LONG_PREAMBLE  = 1,	/* Long Preamble */
> +	G_AUTO_PREAMBLE  = 2,	/* Auto Preamble Selection */
>  } G_PREAMBLE_T;
>  
>  #define MAC_CONNECTED    1
>  #define MAC_DISCONNECTED 0
>  
> -/*bug3819: */
> +/* bug3819: */
>  #define SCAN_DONE		TRUE
>  typedef enum {
>  	PASSIVE_SCAN = 0,
> @@ -328,10 +304,10 @@ typedef enum {
>  	WEP_104 = 0x7,
>  	WPA_AES = 0x29,
>  	WPA_TKIP = 0x49,
> -	WPA_AES_TKIP = 0x69,            /* Aes or Tkip */
> +	WPA_AES_TKIP = 0x69,	/* Aes or Tkip */

You are changing the indentation, not // into /* style here.

You do this in other places, just changing alignment, not the C99
comment style.

Please fix up into multiple patches, each one only doing one thing.

thanks,

greg k-h

      parent reply	other threads:[~2015-06-18  4:19 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-17  7:28 [PATCH 1/5] staging: wilc1000: change commenting styles Sunghoon Cho
2015-06-17  7:28 ` [PATCH 2/5] staging: wilc1000: remove the warnings on multiple blank line uses Sunghoon Cho
2015-06-18  4:19   ` Greg KH
2015-06-17  7:28 ` [PATCH 3/5] staging: wilc1000: remove the warnings on line over 80 characters Sunghoon Cho
2015-06-17  7:28 ` [PATCH 4/5] staging: wilc100: align definitions Sunghoon Cho
2015-06-17  7:28 ` [PATCH 5/5] staging: wilc1000: align the line of enum data Sunghoon Cho
2015-06-18  4:19 ` Greg KH [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150618041921.GA10663@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=Rachel.kim@atmel.com \
    --cc=chris.park@atmel.com \
    --cc=dean.lee@atmel.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=johnny.kim@atmel.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=ywhsbliss@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).