mirror of https://github.com/xqemu/xqemu.git
checkpatch: ignore automatically imported Linux headers
Linux uses tabs for indentation and checkpatch always complained about automatically imported headers. update-linux-headers.sh could be modified to expand tabs, but there is no real reason to complain about any ugly code in Linux headers, so skip all hunk-related checks. Signed-off-by: Radim Krčmář <rkrcmar@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2368635d39
commit
93bf13c6df
|
@ -1319,6 +1319,9 @@ sub process {
|
||||||
# ignore non-hunk lines and lines being removed
|
# ignore non-hunk lines and lines being removed
|
||||||
next if (!$hunk_line || $line =~ /^-/);
|
next if (!$hunk_line || $line =~ /^-/);
|
||||||
|
|
||||||
|
# ignore files that are being periodically imported from Linux
|
||||||
|
next if ($realfile =~ /^(linux-headers|include\/standard-headers)\//);
|
||||||
|
|
||||||
#trailing whitespace
|
#trailing whitespace
|
||||||
if ($line =~ /^\+.*\015/) {
|
if ($line =~ /^\+.*\015/) {
|
||||||
my $herevet = "$here\n" . cat_vet($rawline) . "\n";
|
my $herevet = "$here\n" . cat_vet($rawline) . "\n";
|
||||||
|
|
Loading…
Reference in New Issue