[openwrt/openwrt] scripts: checkpatch.pl: suppress warnings about MAINTAINERS

LEDE Commits lede-commits at lists.infradead.org
Wed Nov 18 15:51:21 EST 2020


adrian pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/6fdd4187e0b1b5aacbe0130d8c343c7eb4b2f2e7

commit 6fdd4187e0b1b5aacbe0130d8c343c7eb4b2f2e7
Author: Adrian Schmutzler <freifunk at adrianschmutzler.de>
AuthorDate: Wed Nov 18 21:38:59 2020 +0100

    scripts: checkpatch.pl: suppress warnings about MAINTAINERS
    
    The kernel expects changes to MAINTAINERS for all removed or added
    files, printing warnings like:
    
      WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
      #828:
      deleted file mode 100644
    
    Since this does not apply to "our" files in OpenWrt repo, this
    warning should be disabled.
    
    This can be achieved easiest by setting $reported_maintainer_file
    to 1. While this is a hack that tricks the script into believing
    the proper MAINTAINERS changes have been made, it's the easiest
    solution as it does not require to touch any other code.
    
    Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
 scripts/checkpatch.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 9da28baf35..8ffc093548 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2355,7 +2355,7 @@ sub process {
 	my $commit_log_possible_stack_dump = 0;
 	my $commit_log_long_line = 0;
 	my $commit_log_has_diff = 0;
-	my $reported_maintainer_file = 0;
+	my $reported_maintainer_file = 1;
 	my $non_utf8_charset = 0;
 
 	my $last_blank_line = 0;



More information about the lede-commits mailing list