Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de4c924c authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds
Browse files

checkpatch: enable whitespace checks for DTS files



When run on *.dtsi or *.dts files, the whitespace checks were skipped,
while they are valid for DTS files.  Hence stop skipping them.

I ran checkpatch on all in-tree DTS files, and didn't notice any error or
warning messages that are inappropriate for DTS files.

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Acked-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent cdcee686
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -2343,7 +2343,7 @@ sub process {
		}
		}


# check we are in a valid source file if not then ignore this hunk
# check we are in a valid source file if not then ignore this hunk
		next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
		next if ($realfile !~ /\.(h|c|s|S|pl|sh|dtsi|dts)$/);


#line length limit
#line length limit
		if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
		if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
@@ -2404,7 +2404,7 @@ sub process {
		}
		}


# check we are in a valid source file C or perl if not then ignore this hunk
# check we are in a valid source file C or perl if not then ignore this hunk
		next if ($realfile !~ /\.(h|c|pl)$/);
		next if ($realfile !~ /\.(h|c|pl|dtsi|dts)$/);


# at the beginning of a line any tabs must come first and anything
# at the beginning of a line any tabs must come first and anything
# more than 8 must use tabs.
# more than 8 must use tabs.