]> git.baikalelectronics.ru Git - kernel.git/commit
scripts/checkpatch.pl: avoid false warning missing break
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Fri, 17 Nov 2017 23:28:38 +0000 (15:28 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 18 Nov 2017 00:10:02 +0000 (16:10 -0800)
commitf14ebf7605699b5a9eac643e841ded75078e0702
tree94e6e19a2986fb989a9cee74cbad5efbf007077e
parent2fc650cfc5e329eaa00e13b543f483fc444d82e5
scripts/checkpatch.pl: avoid false warning missing break

void foo(int a)
switch (a) {
case 'h':
fun1();
exit(1);
default:
}

creates a warning "Possible switch case/default not preceded by break or
fallthrough comment".

exit( should be treated like return.

Link: http://lkml.kernel.org/r/20170910154618.25819-1-xypron.glpk@gmx.de
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/checkpatch.pl