forked from Minki/linux
checkpatch: warn on unnecessary parentheses around references of foo->bar
Parentheses around &(foo->bar) and *(foo->bar) are unnecessary. Emit a --strict only message on these uses. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
8d73e0e7dc
commit
e2826fd070
@ -3491,6 +3491,14 @@ sub process {
|
||||
}
|
||||
}
|
||||
|
||||
# check unnecessary parentheses around addressof/dereference single $Lvals
|
||||
# ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar
|
||||
|
||||
while ($line =~ /(?:[^&]&\s*|\*)\(\s*($Ident\s*(?:$Member\s*)+)\s*\)/g) {
|
||||
CHK("UNNECESSARY_PARENTHESES",
|
||||
"Unnecessary parentheses around $1\n" . $herecurr);
|
||||
}
|
||||
|
||||
#goto labels aren't indented, allow a single space however
|
||||
if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
|
||||
!($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
|
||||
|
Loading…
Reference in New Issue
Block a user