All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/6] staging: ks7010: fixed warning of avoiding line over 80 characters
       [not found] <20170216182800.GA30761@kroah.com>
@ 2017-02-17  9:46 ` Chetan Sethi
  2017-02-17  9:47   ` [PATCH v3 2/6] staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses Chetan Sethi
                     ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Chetan Sethi @ 2017-02-17  9:46 UTC (permalink / raw)
  To: gregkh
  Cc: wsa, bhumirks, mattkilgore12, weiyongjun1, shiva, punitvara,
	devel, linux-kernel, Chetan Sethi

This is patch 01 to ks_wlan.h file in order to fix warning of line over
80 characters, as issued by checkpatch.pl

Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
---
v2:
 - split multiple changes across different patches
v3:
 - mentioned patch revision in subject

 drivers/staging/ks7010/ks_wlan.h | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
index 9ab80e1..668202d 100644
--- a/drivers/staging/ks7010/ks_wlan.h
+++ b/drivers/staging/ks7010/ks_wlan.h
@@ -18,10 +18,10 @@
 #include <linux/kernel.h>
 #include <linux/module.h>
 
-#include <linux/spinlock.h>	/* spinlock_t                                   */
-#include <linux/sched.h>	/* wait_queue_head_t                            */
-#include <linux/types.h>	/* pid_t                                        */
-#include <linux/netdevice.h>	/* struct net_device_stats,  struct sk_buff     */
+#include <linux/spinlock.h>	/* spinlock_t */
+#include <linux/sched.h>	/* wait_queue_head_t */
+#include <linux/types.h>	/* pid_t */
+#include <linux/netdevice.h>	/* struct net_device_stats,  struct sk_buff */
 #include <linux/etherdevice.h>
 #include <linux/wireless.h>
 #include <linux/atomic.h>	/* struct atomic_t */
@@ -36,7 +36,8 @@
 
 #ifdef KS_WLAN_DEBUG
 #define DPRINTK(n, fmt, args...) \
-                 if (KS_WLAN_DEBUG > (n)) printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args)
+                 if (KS_WLAN_DEBUG > (n)) \
+			printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args)
 #else
 #define DPRINTK(n, fmt, args...)
 #endif
-- 
2.7.4

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

* [PATCH v3 2/6] staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses
  2017-02-17  9:46 ` [PATCH v3 1/6] staging: ks7010: fixed warning of avoiding line over 80 characters Chetan Sethi
@ 2017-02-17  9:47   ` Chetan Sethi
  2017-02-24 17:07     ` Greg KH
  2017-02-17  9:48   ` [PATCH v3 3/6] staging: ks7010: fix coding style issue of using tabs instead of spaces Chetan Sethi
                     ` (3 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Chetan Sethi @ 2017-02-17  9:47 UTC (permalink / raw)
  To: gregkh
  Cc: wsa, bhumirks, mattkilgore12, weiyongjun1, shiva, punitvara,
	devel, linux-kernel, Chetan Sethi

This is 02nd patch to file ks_wlan.h file fixing error of enclosing
complex macro value in parentheses

Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
---
v2:
 - split multiple changes across different patches
v3:
 - mentioned patch revision in subject
 - incorporated review comment of correct indentation for do statement

 drivers/staging/ks7010/ks_wlan.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
index 668202d..33d6b28 100644
--- a/drivers/staging/ks7010/ks_wlan.h
+++ b/drivers/staging/ks7010/ks_wlan.h
@@ -36,8 +36,10 @@
 
 #ifdef KS_WLAN_DEBUG
 #define DPRINTK(n, fmt, args...) \
-                 if (KS_WLAN_DEBUG > (n)) \
-			printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args)
+        do { \
+		if (KS_WLAN_DEBUG > (n)) \
+			printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args); \
+	} while (0)
 #else
 #define DPRINTK(n, fmt, args...)
 #endif
-- 
2.7.4

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

* [PATCH v3 3/6] staging: ks7010: fix coding style issue of using tabs instead of spaces
  2017-02-17  9:46 ` [PATCH v3 1/6] staging: ks7010: fixed warning of avoiding line over 80 characters Chetan Sethi
  2017-02-17  9:47   ` [PATCH v3 2/6] staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses Chetan Sethi
@ 2017-02-17  9:48   ` Chetan Sethi
  2017-02-17  9:48   ` [PATCH v3 4/6] drivers: staging: fix coding style issue of using pr_notice instead of printk Chetan Sethi
                     ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Chetan Sethi @ 2017-02-17  9:48 UTC (permalink / raw)
  To: gregkh
  Cc: wsa, bhumirks, mattkilgore12, weiyongjun1, shiva, punitvara,
	devel, linux-kernel, Chetan Sethi

This is 03rd patch to file ks_wlan.h fixing coding style issue of using
tabs instead of spaces at start of line, error as issued by checkpatch.pl

Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
---
v2:
 - split multiple changes across different patches
v3:
 - mentioned patch revision in subject

 drivers/staging/ks7010/ks_wlan.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
index 33d6b28..94b648b 100644
--- a/drivers/staging/ks7010/ks_wlan.h
+++ b/drivers/staging/ks7010/ks_wlan.h
@@ -36,7 +36,7 @@
 
 #ifdef KS_WLAN_DEBUG
 #define DPRINTK(n, fmt, args...) \
-        do { \
+	do { \
 		if (KS_WLAN_DEBUG > (n)) \
 			printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args); \
 	} while (0)
-- 
2.7.4

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

* [PATCH v3 4/6] drivers: staging: fix coding style issue of using pr_notice instead of printk
  2017-02-17  9:46 ` [PATCH v3 1/6] staging: ks7010: fixed warning of avoiding line over 80 characters Chetan Sethi
  2017-02-17  9:47   ` [PATCH v3 2/6] staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses Chetan Sethi
  2017-02-17  9:48   ` [PATCH v3 3/6] staging: ks7010: fix coding style issue of using tabs instead of spaces Chetan Sethi
@ 2017-02-17  9:48   ` Chetan Sethi
  2017-02-24 17:47     ` Greg KH
  2017-02-17  9:49   ` [PATCH v3 5/6] drivers: staging: fix coding style issue of using __func__ instead of __FUNCTION__ Chetan Sethi
  2017-02-17  9:49   ` [PATCH v3 6/6] drivers: staging: fix coding style issue of aligning comments properly Chetan Sethi
  4 siblings, 1 reply; 8+ messages in thread
From: Chetan Sethi @ 2017-02-17  9:48 UTC (permalink / raw)
  To: gregkh
  Cc: wsa, bhumirks, mattkilgore12, weiyongjun1, shiva, punitvara,
	devel, linux-kernel, Chetan Sethi

This is 04th patch to ks_wlan.h fixing coding style issue of using
pr_notice instead of printk, warning as issued by checkpatch.pl

Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
---
v2:
 - split multiple changes across different patches
v3:
 - mentioned patch revision in subject

 drivers/staging/ks7010/ks_wlan.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
index 94b648b..78beca7 100644
--- a/drivers/staging/ks7010/ks_wlan.h
+++ b/drivers/staging/ks7010/ks_wlan.h
@@ -38,7 +38,7 @@
 #define DPRINTK(n, fmt, args...) \
 	do { \
 		if (KS_WLAN_DEBUG > (n)) \
-			printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args); \
+			pr_notice("%s: "fmt, __FUNCTION__, ## args); \
 	} while (0)
 #else
 #define DPRINTK(n, fmt, args...)
-- 
2.7.4

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

* [PATCH v3 5/6] drivers: staging: fix coding style issue of using __func__ instead of __FUNCTION__
  2017-02-17  9:46 ` [PATCH v3 1/6] staging: ks7010: fixed warning of avoiding line over 80 characters Chetan Sethi
                     ` (2 preceding siblings ...)
  2017-02-17  9:48   ` [PATCH v3 4/6] drivers: staging: fix coding style issue of using pr_notice instead of printk Chetan Sethi
@ 2017-02-17  9:49   ` Chetan Sethi
  2017-02-17  9:49   ` [PATCH v3 6/6] drivers: staging: fix coding style issue of aligning comments properly Chetan Sethi
  4 siblings, 0 replies; 8+ messages in thread
From: Chetan Sethi @ 2017-02-17  9:49 UTC (permalink / raw)
  To: gregkh
  Cc: wsa, bhumirks, mattkilgore12, weiyongjun1, shiva, punitvara,
	devel, linux-kernel, Chetan Sethi

This is 05th patch to file ks_wlan.h which fixes coding style issue of
using __func__ instead of gcc specific __FUNCTION__, warning as issued by
checkpatch.pl

Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
---
v2:
 - split multiple changes across different patches
v3:
 - mentioned patch revision in subject

 drivers/staging/ks7010/ks_wlan.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
index 78beca7..79737bf 100644
--- a/drivers/staging/ks7010/ks_wlan.h
+++ b/drivers/staging/ks7010/ks_wlan.h
@@ -38,7 +38,7 @@
 #define DPRINTK(n, fmt, args...) \
 	do { \
 		if (KS_WLAN_DEBUG > (n)) \
-			pr_notice("%s: "fmt, __FUNCTION__, ## args); \
+			pr_notice("%s: "fmt, __func__, ## args); \
 	} while (0)
 #else
 #define DPRINTK(n, fmt, args...)
-- 
2.7.4

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

* [PATCH v3 6/6] drivers: staging: fix coding style issue of aligning comments properly
  2017-02-17  9:46 ` [PATCH v3 1/6] staging: ks7010: fixed warning of avoiding line over 80 characters Chetan Sethi
                     ` (3 preceding siblings ...)
  2017-02-17  9:49   ` [PATCH v3 5/6] drivers: staging: fix coding style issue of using __func__ instead of __FUNCTION__ Chetan Sethi
@ 2017-02-17  9:49   ` Chetan Sethi
  4 siblings, 0 replies; 8+ messages in thread
From: Chetan Sethi @ 2017-02-17  9:49 UTC (permalink / raw)
  To: gregkh
  Cc: wsa, bhumirks, mattkilgore12, weiyongjun1, shiva, punitvara,
	devel, linux-kernel, Chetan Sethi

This is 06th patch to file ks_wlan.h in order to fix coding style issue
of having block comments using a trailing */ on a separate line, warning
as issued by checkpatch.pl

Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
---
v2:
 - split multiple changes across different patches
v3:
 - mentioned patch revision in subject

 drivers/staging/ks7010/ks_wlan.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
index 79737bf..1a63704 100644
--- a/drivers/staging/ks7010/ks_wlan.h
+++ b/drivers/staging/ks7010/ks_wlan.h
@@ -359,7 +359,8 @@ struct wpa_key_t {
 	u8 rx_seq[IW_ENCODE_SEQ_MAX_SIZE];	/* LSB first */
 	struct sockaddr addr;	/* ff:ff:ff:ff:ff:ff for broadcast/multicast
 				 * (group) keys or unicast address for
-				 * individual keys */
+				 * individual keys
+				 */
 	u16 alg;
 	u16 key_len;	/* WEP: 5 or 13, TKIP: 32, CCMP: 16 */
 	u8 key_val[IW_ENCODING_TOKEN_MAX];
-- 
2.7.4

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

* Re: [PATCH v3 2/6] staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses
  2017-02-17  9:47   ` [PATCH v3 2/6] staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses Chetan Sethi
@ 2017-02-24 17:07     ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2017-02-24 17:07 UTC (permalink / raw)
  To: Chetan Sethi
  Cc: devel, punitvara, wsa, mattkilgore12, linux-kernel, weiyongjun1,
	shiva, bhumirks

On Fri, Feb 17, 2017 at 06:47:39PM +0900, Chetan Sethi wrote:
> This is 02nd patch to file ks_wlan.h file fixing error of enclosing
> complex macro value in parentheses

No need to have the "This is the XXX patch..." in the changelog text,
you don't see that in any other commit logs, right?

> 
> Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
> ---
> v2:
>  - split multiple changes across different patches
> v3:
>  - mentioned patch revision in subject
>  - incorporated review comment of correct indentation for do statement
> 
>  drivers/staging/ks7010/ks_wlan.h | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h
> index 668202d..33d6b28 100644
> --- a/drivers/staging/ks7010/ks_wlan.h
> +++ b/drivers/staging/ks7010/ks_wlan.h
> @@ -36,8 +36,10 @@
>  
>  #ifdef KS_WLAN_DEBUG
>  #define DPRINTK(n, fmt, args...) \
> -                 if (KS_WLAN_DEBUG > (n)) \
> -			printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args)
> +        do { \

Always run checkpatch on your patches so you don't get a grumpy
maintainer telling you to run your patches through checkpatch!

Please fix up all 3 of these and resend.

thanks,

greg k-h

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

* Re: [PATCH v3 4/6] drivers: staging: fix coding style issue of using pr_notice instead of printk
  2017-02-17  9:48   ` [PATCH v3 4/6] drivers: staging: fix coding style issue of using pr_notice instead of printk Chetan Sethi
@ 2017-02-24 17:47     ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2017-02-24 17:47 UTC (permalink / raw)
  To: Chetan Sethi
  Cc: devel, punitvara, wsa, mattkilgore12, linux-kernel, weiyongjun1,
	shiva, bhumirks

On Fri, Feb 17, 2017 at 06:48:46PM +0900, Chetan Sethi wrote:
> This is 04th patch to ks_wlan.h fixing coding style issue of using
> pr_notice instead of printk, warning as issued by checkpatch.pl
> 
> Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
> ---
> v2:
>  - split multiple changes across different patches
> v3:
>  - mentioned patch revision in subject

Does not apply to my tree, did I miss some previous patches?  Please
resend the whole series.

thanks,

greg k-h

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

end of thread, other threads:[~2017-02-24 17:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20170216182800.GA30761@kroah.com>
2017-02-17  9:46 ` [PATCH v3 1/6] staging: ks7010: fixed warning of avoiding line over 80 characters Chetan Sethi
2017-02-17  9:47   ` [PATCH v3 2/6] staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses Chetan Sethi
2017-02-24 17:07     ` Greg KH
2017-02-17  9:48   ` [PATCH v3 3/6] staging: ks7010: fix coding style issue of using tabs instead of spaces Chetan Sethi
2017-02-17  9:48   ` [PATCH v3 4/6] drivers: staging: fix coding style issue of using pr_notice instead of printk Chetan Sethi
2017-02-24 17:47     ` Greg KH
2017-02-17  9:49   ` [PATCH v3 5/6] drivers: staging: fix coding style issue of using __func__ instead of __FUNCTION__ Chetan Sethi
2017-02-17  9:49   ` [PATCH v3 6/6] drivers: staging: fix coding style issue of aligning comments properly Chetan Sethi

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.