mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-13 15:53:56 +08:00
checkpatch: fix networking kernel-doc block comment defect
checkpatch can generate a false positive when inserting a new kernel-doc block and function above an existing kernel-doc block. Fix it by checking that the context line is also a newly inserted line. Signed-off-by: Joe Perches <joe@perches.com> Reported-by: Darren Hart <dvhart@linux.intel.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
70dc8a4835
commit
61135e9663
@ -2086,6 +2086,7 @@ sub process {
|
||||
if ($realfile =~ m@^(drivers/net/|net/)@ &&
|
||||
$prevrawline =~ /^\+[ \t]*\/\*/ && #starting /*
|
||||
$prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
|
||||
$rawline =~ /^\+/ && #line is new
|
||||
$rawline !~ /^\+[ \t]*\*/) { #no leading *
|
||||
WARN("NETWORKING_BLOCK_COMMENT_STYLE",
|
||||
"networking block comments start with * on subsequent lines\n" . $hereprev);
|
||||
|
Loading…
Reference in New Issue
Block a user