]> git.baikalelectronics.ru Git - kernel.git/commit
checkpatch: avoid some false positives for TABSTOP declaration test
authorJoe Perches <joe@perches.com>
Tue, 6 Feb 2018 23:39:06 +0000 (15:39 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 7 Feb 2018 02:32:45 +0000 (18:32 -0800)
commit8e40fb6c17dfc2751b74160140cd51c2385e98b6
treea85ad3e155123a0d68c2ecc1927659144cdeb18c
parentf2ea5b2a9d4a3384423e415fbe86eb8281fe705f
checkpatch: avoid some false positives for TABSTOP declaration test

Using an open bracket after what seems to be a declaration can also be a
function definition and declaration argument line continuation so remove
the open bracket from the possible declaration/definition matching.

e.g.:
int foobar(int a;
   int *b[]);

Link: http://lkml.kernel.org/r/1515704479.9619.171.camel@perches.com
Signed-off-by: Joe Perches <joe@perches.com>
Reported-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/checkpatch.pl