diff options
author | Simon Glass | 2023-03-08 10:52:52 -0800 |
---|---|---|
committer | Simon Glass | 2023-03-08 13:15:14 -0800 |
commit | 98bc0b48bdf02694a75ef02be09118777d8a8c1e (patch) | |
tree | ae8650c7f72b209bc446277abebbd95fb6f76639 /tools | |
parent | 3998b45e318a888bed905ce9ed15b7b908c5a30d (diff) |
patman: Drop an incorrect comment about git am
Patman does not do this anymore, as of this commit:
7428dc14b0f ("patman: Remove the -a option")
Drop the comment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/patman/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/control.py b/tools/patman/control.py index d1bcea0c9a7..916ddf8fcff 100644 --- a/tools/patman/control.py +++ b/tools/patman/control.py @@ -85,7 +85,7 @@ def check_patches(series, patch_files, run_checkpatch, verbose, use_tree): # Do a few checks on the series series.DoChecks() - # Check the patches, and run them through 'git am' just to be sure + # Check the patches if run_checkpatch: ok = checkpatch.check_patches(verbose, patch_files, use_tree) else: |