From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758839AbbJ3M40 (ORCPT ); Fri, 30 Oct 2015 08:56:26 -0400 Received: from mail-wm0-f44.google.com ([74.125.82.44]:35645 "EHLO mail-wm0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751073AbbJ3M4Z (ORCPT ); Fri, 30 Oct 2015 08:56:25 -0400 Date: Fri, 30 Oct 2015 12:56:22 +0000 From: Andy Whitcroft To: shailendra.v@samsung.com Cc: Joe Perches , linux-kernel@vger.kernel.org Subject: Re: [PATCH] scripts:checkpatch - correct the error message during check Message-ID: <20151030125622.GD13734@bark> References: <1446204304-23107-1-git-send-email-shailendra.v@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1446204304-23107-1-git-send-email-shailendra.v@samsung.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 30, 2015 at 04:55:04PM +0530, shailendra.v@samsung.com wrote: > From: Shailendra Verma > > Signed-off-by: Shailendra Verma > --- > scripts/checkpatch.pl | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl > index c5ec977..b2436d3 100755 > --- a/scripts/checkpatch.pl > +++ b/scripts/checkpatch.pl > @@ -3169,21 +3169,21 @@ sub process { > } > > # check for global initialisers. > - if ($line =~ /^\+$Type\s*$Ident(?:\s+$Modifier)*\s*=\s*(?:0|NULL|false)\s*;/) { > + if ($line =~ /^\+$Type\s*$Ident(?:\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 $1\n" . > $herecurr) && > $fix) { > - $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*(0|NULL|false)\s*;/$1;/; > + $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\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;/; > } > } I guess that looks ok. Joe you don't know of anyone relying on the form of the error do you (I do not)? -apw