diff options
author | Maxim Cournoyer | 2023-01-13 08:50:49 -0500 |
---|---|---|
committer | Simon Glass | 2023-01-18 14:55:41 -0700 |
commit | da413b56356c0c95c10ecb8e73ec31d160c7024a (patch) | |
tree | f530b62e3ea7fcc9edcb7d6022fff5cfc6e42f0e /tools/patman | |
parent | 571bc4e67d39e4c376f8bab0d6518ab5ee832d9e (diff) |
Revert "patman: invoke the checkpatch.pl script with '--u-boot' and '--strict'"
This reverts commit 648d8186dd7f9c444fb07f355090d275dcdd4de4, because
it broke usage of patman on Linux, whose check script doesn't know
about '--strict' or '--u-boot'.
Reported-by: Sjoerd Simons <sjoerd@collabora.com>
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Sjoerd Simons <sjoerd@collabora.com>
Diffstat (limited to 'tools/patman')
-rw-r--r-- | tools/patman/checkpatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |