The patch titled Subject: checkpatch: add early_param exception to blank line after struct/function test has been added to the -mm tree. Its filename is checkpatch-add-early_param-exception-to-blank-line-after-struct-function-test.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/checkpatch-add-early_param-exception-to-blank-line-after-struct-function-test.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/checkpatch-add-early_param-exception-to-blank-line-after-struct-function-test.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Joe Perches <joe@xxxxxxxxxxx> Subject: checkpatch: add early_param exception to blank line after struct/function test Add early_param as another exception to the blank line preferred after function/struct/union declaration or definition test. Link: https://lkml.kernel.org/r/3bd6ada59f411a7685d7e64eeb670540d4bfdcde.camel@xxxxxxxxxxx Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Cc: Dwaipayan Ray <dwaipayanray1@xxxxxxxxx> Cc: Lukas Bulwahn <lukas.bulwahn@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/checkpatch.pl~checkpatch-add-early_param-exception-to-blank-line-after-struct-function-test +++ a/scripts/checkpatch.pl @@ -3926,7 +3926,7 @@ sub process { if ($prevline =~ /^[\+ ]};?\s*$/ && $line =~ /^\+/ && !($line =~ /^\+\s*$/ || - $line =~ /^\+\s*EXPORT_SYMBOL/ || + $line =~ /^\+\s*(?:EXPORT_SYMBOL|early_param)/ || $line =~ /^\+\s*MODULE_/i || $line =~ /^\+\s*\#\s*(?:end|elif|else)/ || $line =~ /^\+[a-z_]*init/ || _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are checkpatch-prefer-module_licensegpl-over-module_licensegpl-v2.patch checkpatch-add-fix-option-for-some-trailing_statements.patch checkpatch-add-early_param-exception-to-blank-line-after-struct-function-test.patch