All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Sanjeev Sharma <sanjeev_sharma@mentor.com>
Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging:r8190_rtl8256: coding style: Fixed commenting style
Date: Sat, 30 Aug 2014 13:57:52 -0700	[thread overview]
Message-ID: <20140830205752.GA28515@kroah.com> (raw)
In-Reply-To: <1408951527-29317-1-git-send-email-sanjeev_sharma@mentor.com>

On Mon, Aug 25, 2014 at 12:55:27PM +0530, Sanjeev Sharma wrote:
> This is a patch to the r8190_rtl8256.c file that fixes
> commenting style Error
> 
> Signed-off-by: Sanjeev Sharma <Sanjeev_Sharma@mentor.com>
> ---
>  drivers/staging/rtl8192u/r8190_rtl8256.c | 59 +++++++++++++++++---------------
>  1 file changed, 31 insertions(+), 28 deletions(-)
> 
> diff --git a/drivers/staging/rtl8192u/r8190_rtl8256.c b/drivers/staging/rtl8192u/r8190_rtl8256.c
> index 43ed768..8fe35ad 100644
> --- a/drivers/staging/rtl8192u/r8190_rtl8256.c
> +++ b/drivers/staging/rtl8192u/r8190_rtl8256.c
> @@ -61,13 +61,15 @@ void PHY_SetRF8256Bandwidth(struct net_device *dev , HT_CHANNEL_WIDTH Bandwidth)
>  				break;
>  		case HT_CHANNEL_WIDTH_20_40:
>  				if (priv->card_8192_version == VERSION_819xU_A || priv->card_8192_version == VERSION_819xU_B) { /* 8256 D-cut, E-cut, xiong: consider it later! */
> -					rtl8192_phy_SetRFReg(dev, (RF90_RADIO_PATH_E)eRFPath, 0x0b, bMask12Bits, 0x300); //phy para:3ba
> +					rtl8192_phy_SetRFReg(dev, (RF90_RADIO_PATH_E)eRFPath, 0x0b, bMask12Bits, 0x300); /* phy para:3ba */
>  					rtl8192_phy_SetRFReg(dev, (RF90_RADIO_PATH_E)eRFPath, 0x2c, bMask12Bits, 0x3df);
>  					rtl8192_phy_SetRFReg(dev, (RF90_RADIO_PATH_E)eRFPath, 0x0e, bMask12Bits, 0x0a1);
>  
> -					//cosa add for sd3's request 01/23/2008
> +					/* cosa add for sd3's request 01/23/2008
> +					 *
> +					 */
>  					if (priv->chan == 3 || priv->chan == 9)
> -						//I need to set priv->chan whenever current channel changes
> +						/* I need to set priv->chan whenever current channel changes */
>  						rtl8192_phy_SetRFReg(dev, (RF90_RADIO_PATH_E)eRFPath, 0x14, bMask12Bits, 0x59b);
>  					else
>  						rtl8192_phy_SetRFReg(dev, (RF90_RADIO_PATH_E)eRFPath, 0x14, bMask12Bits, 0x5ab);
> @@ -91,11 +93,12 @@ void PHY_SetRF8256Bandwidth(struct net_device *dev , HT_CHANNEL_WIDTH Bandwidth)
>  void PHY_RF8256_Config(struct net_device *dev)
>  {
>  	struct r8192_priv *priv = ieee80211_priv(dev);
> -	// Initialize general global value
> -	//
> -	// TODO: Extend RF_PATH_C and RF_PATH_D in the future
> +	/* Initialize general global value
> +	 *
> +	 * TODO: Extend RF_PATH_C and RF_PATH_D in the future
> +	 */
>  	priv->NumTotalRFPath = RTL819X_TOTAL_RF_PATH;
> -	// Config BB and RF
> +	/* Config BB and RF */
>  	phy_RF8256_Config_ParaFile(dev);
>  }
>  /*--------------------------------------------------------------------------
> @@ -107,10 +110,11 @@ void PHY_RF8256_Config(struct net_device *dev)
>  void phy_RF8256_Config_ParaFile(struct net_device *dev)
>  {
>  	u32	u4RegValue = 0;
> -	//static s1Byte				szRadioAFile[] = RTL819X_PHY_RADIO_A;
> -	//static s1Byte				szRadioBFile[] = RTL819X_PHY_RADIO_B;
> -	//static s1Byte				szRadioCFile[] = RTL819X_PHY_RADIO_C;
> -	//static s1Byte				szRadioDFile[] = RTL819X_PHY_RADIO_D;
> +	/* static s1Byte				szRadioAFile[] = RTL819X_PHY_RADIO_A;
> +	 * static s1Byte				szRadioBFile[] = RTL819X_PHY_RADIO_B;
> +	 * static s1Byte				szRadioCFile[] = RTL819X_PHY_RADIO_C;
> +	 * static s1Byte				szRadioDFile[] = RTL819X_PHY_RADIO_D;
> +	 */

Why not just remove stuff like this if it's not being used?

Same goes for other commented out code lines.

thanks,

greg k-h

  reply	other threads:[~2014-08-30 20:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-25  7:25 [PATCH] staging:r8190_rtl8256: coding style: Fixed commenting style Sanjeev Sharma
2014-08-30 20:57 ` Greg KH [this message]
2014-09-09  4:17   ` Sharma, Sanjeev
2014-09-09  4:28   ` [PATCH v2] " Sanjeev Sharma

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=20140830205752.GA28515@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=devel@driverdev.osuosl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sanjeev_sharma@mentor.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.