public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Drivers:staging:wlan-ng: Fixed line over 80 characters warning
@ 2014-11-23  9:56 Lekshmi
  2014-11-23 17:28 ` Sudip Mukherjee
  2014-11-23 17:39 ` Greg KH
  0 siblings, 2 replies; 3+ messages in thread
From: Lekshmi @ 2014-11-23  9:56 UTC (permalink / raw)
  To: gregkh
  Cc: matt, raghav3276, josh, tapaswenipathak, vitaly.osipov, devel,
	linux-kernel, Lekshmi

The following chaeckpatch warning was fixed:
WARNING: line over 80 characters

Signed-off-by: Lekshmi <andnlnbn18@gmail.com>
---
 drivers/staging/wlan-ng/prism2fw.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/wlan-ng/prism2fw.c b/drivers/staging/wlan-ng/prism2fw.c
index e907380..5c3fd2d 100644
--- a/drivers/staging/wlan-ng/prism2fw.c
+++ b/drivers/staging/wlan-ng/prism2fw.c
@@ -238,7 +238,8 @@ static int prism2_fwtry(struct usb_device *udev, wlandevice_t *wlandev)
 *	0	- success
 *	~0	- failure
 ----------------------------------------------------------------*/
-static int prism2_fwapply(const struct ihex_binrec *rfptr, wlandevice_t *wlandev)
+static int prism2_fwapply(const struct ihex_binrec *rfptr,
+			  wlandevice_t *wlandev)
 {
 	signed int result = 0;
 	struct p80211msg_dot11req_mibget getmsg;
@@ -707,7 +708,8 @@ static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
 			continue;
 		}
 
-		/* Validate plug address against chunk data and identify chunk */
+		/* Validate plug address against chunk data
+		 * and identify chunk */
 		for (c = 0; c < nfchunks; c++) {
 			cstart = fchunk[c].addr;
 			cend = fchunk[c].addr + fchunk[c].len;
-- 
1.7.9.5


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

* Re: [PATCH] Drivers:staging:wlan-ng: Fixed line over 80 characters warning
  2014-11-23  9:56 [PATCH] Drivers:staging:wlan-ng: Fixed line over 80 characters warning Lekshmi
@ 2014-11-23 17:28 ` Sudip Mukherjee
  2014-11-23 17:39 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Sudip Mukherjee @ 2014-11-23 17:28 UTC (permalink / raw)
  To: Lekshmi
  Cc: gregkh, matt, raghav3276, josh, tapaswenipathak, vitaly.osipov,
	devel, linux-kernel

On Sun, Nov 23, 2014 at 03:26:54PM +0530, Lekshmi wrote:
> The following chaeckpatch warning was fixed:
> WARNING: line over 80 characters
> 
> Signed-off-by: Lekshmi <andnlnbn18@gmail.com>
> ---
>  drivers/staging/wlan-ng/prism2fw.c |    6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/wlan-ng/prism2fw.c b/drivers/staging/wlan-ng/prism2fw.c
> index e907380..5c3fd2d 100644
> --- a/drivers/staging/wlan-ng/prism2fw.c
> +++ b/drivers/staging/wlan-ng/prism2fw.c
> @@ -238,7 +238,8 @@ static int prism2_fwtry(struct usb_device *udev, wlandevice_t *wlandev)
>  *	0	- success
>  *	~0	- failure
>  ----------------------------------------------------------------*/
> -static int prism2_fwapply(const struct ihex_binrec *rfptr, wlandevice_t *wlandev)
> +static int prism2_fwapply(const struct ihex_binrec *rfptr,
> +			  wlandevice_t *wlandev)
>  {
>  	signed int result = 0;
>  	struct p80211msg_dot11req_mibget getmsg;
> @@ -707,7 +708,8 @@ static int plugimage(struct imgchunk *fchunk, unsigned int nfchunks,
>  			continue;
>  		}
>  
> -		/* Validate plug address against chunk data and identify chunk */
> +		/* Validate plug address against chunk data
> +		 * and identify chunk */
this is not the style for multiline comment. please check the CodingStyle in Documentation.

thanks
sudip

>  		for (c = 0; c < nfchunks; c++) {
>  			cstart = fchunk[c].addr;
>  			cend = fchunk[c].addr + fchunk[c].len;
> -- 
> 1.7.9.5
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH] Drivers:staging:wlan-ng: Fixed line over 80 characters warning
  2014-11-23  9:56 [PATCH] Drivers:staging:wlan-ng: Fixed line over 80 characters warning Lekshmi
  2014-11-23 17:28 ` Sudip Mukherjee
@ 2014-11-23 17:39 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2014-11-23 17:39 UTC (permalink / raw)
  To: Lekshmi; +Cc: devel, matt, tapaswenipathak, josh, linux-kernel, raghav3276

On Sun, Nov 23, 2014 at 03:26:54PM +0530, Lekshmi wrote:
> The following chaeckpatch warning was fixed:
> WARNING: line over 80 characters
> 
> Signed-off-by: Lekshmi <andnlnbn18@gmail.com>

I need a "full and real" name here in order to be able to accept any
patch.

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

end of thread, other threads:[~2014-11-23 17:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-23  9:56 [PATCH] Drivers:staging:wlan-ng: Fixed line over 80 characters warning Lekshmi
2014-11-23 17:28 ` Sudip Mukherjee
2014-11-23 17:39 ` Greg KH

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