[PATCH] patman: use new --u-boot option with checkpath.pl

Daniel Schwierzeck daniel.schwierzeck at gmail.com
Sat Jun 6 23:31:03 CEST 2020


checkpatch.pl now supports a --u-boot option for U-Boot specific
checks. Use that in patman to check the patch series.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck at gmail.com>

---

 tools/patman/checkpatch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/patman/checkpatch.py b/tools/patman/checkpatch.py
index 795b519314..7f507154b8 100644
--- a/tools/patman/checkpatch.py
+++ b/tools/patman/checkpatch.py
@@ -64,7 +64,7 @@ def CheckPatch(fname, verbose=False):
     result.problems = []
     chk = FindCheckPatch()
     item = {}
-    result.stdout = command.Output(chk, '--no-tree', fname,
+    result.stdout = command.Output(chk, '--no-tree', '--u-boot', fname,
                                    raise_on_error=False)
     #pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE)
     #stdout, stderr = pipe.communicate()
-- 
2.27.0



More information about the U-Boot mailing list