diff options
Diffstat (limited to 'tools/patman')
l--------- | tools/patman/.checkpatch.conf | 1 | ||||
-rw-r--r-- | tools/patman/checkpatch.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/patman/.checkpatch.conf b/tools/patman/.checkpatch.conf new file mode 120000 index 00000000000..c0e2020afe4 --- /dev/null +++ b/tools/patman/.checkpatch.conf @@ -0,0 +1 @@ +../../.checkpatch.conf
\ No newline at end of file diff --git a/tools/patman/checkpatch.py b/tools/patman/checkpatch.py index 012c0d895cb..d1b902dd962 100644 --- a/tools/patman/checkpatch.py +++ b/tools/patman/checkpatch.py @@ -211,7 +211,7 @@ def check_patch(fname, verbose=False, show_types=False, use_tree=False): stdout: Full output of checkpatch """ chk = find_check_patch() - args = [chk, '--u-boot', '--strict'] + args = [chk] if not use_tree: args.append('--no-tree') if show_types: |