public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scripts:checkpatch - correct the error message during
@ 2015-06-04 15:26 Shailendra Verma
  2015-06-04 16:17 ` Joe Perches
  0 siblings, 1 reply; 3+ messages in thread
From: Shailendra Verma @ 2015-06-04 15:26 UTC (permalink / raw)
  To: Andy Whitcroft, Joe Perches; +Cc: linux-kernel, Shailendra Verma

Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
---
 scripts/checkpatch.pl | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 89b1df4..ac98ee8 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3169,21 +3169,21 @@ sub process {
 		}
 
 # check for global initialisers.
-		if ($line =~ /^\+(\s*$Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0|NULL|false)\s*;/) {
+		if ($line =~ /^\+(\s*$Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0x0|0|NULL|false)\s*;/) {
 			if (ERROR("GLOBAL_INITIALISERS",
-				  "do not initialise globals to 0 or NULL\n" .
+				  "do not initialise globals to $2\n" .
 				      $herecurr) &&
 			    $fix) {
-				$fixed[$fixlinenr] =~ s/($Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0|NULL|false)\s*;/$1;/;
+				$fixed[$fixlinenr] =~ s/($Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0x0|0|NULL|false)\s*;/$1;/;
 			}
 		}
 # check for static initialisers.
-		if ($line =~ /^\+.*\bstatic\s.*=\s*(0|NULL|false)\s*;/) {
+		if ($line =~ /^\+.*\bstatic\s.*=\s*(0x0|0|NULL|false)\s*;/) {
 			if (ERROR("INITIALISED_STATIC",
-				  "do not initialise statics to 0 or NULL\n" .
+				  "do not initialise statics to $1\n" .
 				      $herecurr) &&
 			    $fix) {
-				$fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*(0|NULL|false)\s*;/$1;/;
+				$fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*(0x0|0|NULL|false)\s*;/$1;/;
 			}
 		}
 
-- 
1.9.1


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

* Re: [PATCH] scripts:checkpatch - correct the error message during
  2015-06-04 15:26 [PATCH] scripts:checkpatch - correct the error message during Shailendra Verma
@ 2015-06-04 16:17 ` Joe Perches
       [not found]   ` <CA+tKcn-m5qChV+qx8hLJ7MSBNiQv-qA0q4L2AstLqke17L8_bQ@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2015-06-04 16:17 UTC (permalink / raw)
  To: Shailendra Verma; +Cc: Andy Whitcroft, linux-kernel

On Thu, 2015-06-04 at 20:56 +0530, Shailendra Verma wrote:
> Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>

Please redo this using the most current version
from the linux-next tree.

> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> @@ -3169,21 +3169,21 @@ sub process {
>  		}
>  
>  # check for global initialisers.
> -		if ($line =~ /^\+(\s*$Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0|NULL|false)\s*;/) {
> +		if ($line =~ /^\+(\s*$Type\s*$Ident\s*(?:\s+$Modifier))*\s*=\s*(0x0|0|NULL|false)\s*;/) {

This has changed.



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

* Re: [PATCH] scripts:checkpatch - correct the error message during
       [not found]   ` <CA+tKcn-m5qChV+qx8hLJ7MSBNiQv-qA0q4L2AstLqke17L8_bQ@mail.gmail.com>
@ 2015-06-04 17:29     ` Joe Perches
  0 siblings, 0 replies; 3+ messages in thread
From: Joe Perches @ 2015-06-04 17:29 UTC (permalink / raw)
  To: Shailendra Verma; +Cc: Andy Whitcroft, linux-kernel

On Thu, 2015-06-04 at 22:25 +0530, Shailendra Verma wrote:
> Hello Joe,
> 
> Is it the latest revision of checkpatch.pl?
> 
> https://git.kernel.org/cgit/linux/kernel/git/apw/checkpatch.git/tree/scripts/checkpatch.pl?h=next

Well, it should be here, but Andrew Morton hasn't
pushed it to -next yet.

git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
https://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/tree/scripts/checkpatch.pl

This is the patch:

http://ozlabs.org/~akpm/mmots/broken-out/checkpatch-fix-global_initialisers-test.patch



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

end of thread, other threads:[~2015-06-04 17:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-04 15:26 [PATCH] scripts:checkpatch - correct the error message during Shailendra Verma
2015-06-04 16:17 ` Joe Perches
     [not found]   ` <CA+tKcn-m5qChV+qx8hLJ7MSBNiQv-qA0q4L2AstLqke17L8_bQ@mail.gmail.com>
2015-06-04 17:29     ` Joe Perches

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