mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 14:08:45 +00:00
checkpatch: remove unnecessary + after {8,8}
Pick the following commit from Linux kernel: commit 66cb4ee0e52ca721f609fd5eec16187189ae5fda Author: Joe Perches <joe@perches.com> Date: Wed Sep 10 09:40:47 2014 +1000 checkpatch: remove unnecessary + after {8,8} There's a useless "+" use that needs to be removed as perl 5.20 emits a "Useless use of greediness modifier '+'" message each time it's hit. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Tom Rini <trini@ti.com>
This commit is contained in:
parent
f1ef2b6233
commit
e3a4facdfc
1 changed files with 1 additions and 1 deletions
|
@ -2148,7 +2148,7 @@ sub process {
|
|||
"please, no space before tabs\n" . $herevet) &&
|
||||
$fix) {
|
||||
while ($fixed[$linenr - 1] =~
|
||||
s/(^\+.*) {8,8}+\t/$1\t\t/) {}
|
||||
s/(^\+.*) {8,8}\t/$1\t\t/) {}
|
||||
while ($fixed[$linenr - 1] =~
|
||||
s/(^\+.*) +\t/$1\t/) {}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue