aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2012-06-26 07:58:23 -0700
committerH. Peter Anvin <hpa@zytor.com>2012-06-26 08:02:48 -0700
commit1b6b7c9ff3514772958c075f8c89e42dddf6a4d8 (patch)
treeb956f8d0990cac87e0dba4fc298eac34d71a4602 /arch
parentx86, cpufeature: Catch duplicate CPU feature strings (diff)
downloadlinux-dev-1b6b7c9ff3514772958c075f8c89e42dddf6a4d8.tar.xz
linux-dev-1b6b7c9ff3514772958c075f8c89e42dddf6a4d8.zip
x86, cpufeature: Remove stray %s, add -w to mkcapflags.pl
There was a stray %s left from testing, remove it. Add -w to the #! line (which is parsed by Perl even if the Perl interpreter is invoked explicitly on the command line) to catch these kinds of errors in the future. Reported-by: Jean Delvare <khali@linux-fr.org> Link: http://lkml.kernel.org/r/20120626143246.0c9bf301@endymion.delvare Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kernel/cpu/mkcapflags.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/mkcapflags.pl b/arch/x86/kernel/cpu/mkcapflags.pl
index 0c5b54919c7b..c7b3fe2d72e0 100644
--- a/arch/x86/kernel/cpu/mkcapflags.pl
+++ b/arch/x86/kernel/cpu/mkcapflags.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/perl -w
#
# Generate the x86_cap_flags[] array from include/asm-x86/cpufeature.h
#
@@ -29,7 +29,7 @@ while (defined($line = <IN>)) {
print STDERR "$in: duplicate feature name: $feature\n";
$err++;
}
- printf OUT "\t%-32s = \"%s\",%s\n", "[$macro]", $feature;
+ printf OUT "\t%-32s = \"%s\",\n", "[$macro]", $feature;
}
}
print OUT "};\n";