checkpatch.pl: Add check for defining CONFIG_CMD_xxx via config files
[oweals/u-boot.git] / scripts / checkpatch.pl
index 17d41825c5e186222a8f2be7c134beda10a4b4c5..edba36565167b38bffbe2e1f0a09df60b7deb3e9 100755 (executable)
@@ -2267,6 +2267,12 @@ sub u_boot_line {
                WARN("PREFER_IF",
                     "Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible\n" . $herecurr);
        }
+
+       # use defconfig to manage CONFIG_CMD options
+       if ($line =~ /\+\s*#\s*(define|undef)\s+(CONFIG_CMD\w*)\b/) {
+               ERROR("DEFINE_CONFIG_CMD",
+                     "All commands are managed by Kconfig\n" . $herecurr);
+       }
 }
 
 sub process {