aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-10-29 21:46:21 -0600
committerSimon Glass <sjg@chromium.org>2020-11-05 09:11:31 -0700
commite3a816b9f4ae760fc76ac04b1c730ef5a9f1c1cc (patch)
treee59c59039350fa81da0485111e956a3d8386f5dd
parentdd147eda10d24a04ed3378bfc8679ac25160f96c (diff)
downloadu-boot-e3a816b9f4ae760fc76ac04b1c730ef5a9f1c1cc.tar.gz
patman: Drop unused args in patchstream
Drop a few arguments that are not used in functions. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--tools/patman/patchstream.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py
index 3a057fbd6c..c5402dd896 100644
--- a/tools/patman/patchstream.py
+++ b/tools/patman/patchstream.py
@@ -64,7 +64,7 @@ class PatchStream:
unwanted tags or inject additional ones. These correspond to the two
phases of processing.
"""
- def __init__(self, series, name=None, is_log=False):
+ def __init__(self, series, is_log=False):
self.skip_blank = False # True to skip a single blank line
self.found_test = False # Found a TEST= line
self.lines_after_test = 0 # Number of lines found after TEST=
@@ -100,15 +100,13 @@ class PatchStream:
if self.is_log:
self.series.AddTag(self.commit, line, name, value)
- def _add_to_commit(self, line, name, value):
+ def _add_to_commit(self, name):
"""Add a new Commit-xxx tag.
When a Commit-xxx tag is detected, we come here to record it.
Args:
- line: Source line containing tag (useful for debug/error messages)
name: Tag name (part after 'Commit-')
- value: Tag value (part after 'Commit-xxx: ')
"""
if name == 'notes':
self.in_section = 'commit-' + name
@@ -349,7 +347,7 @@ class PatchStream:
name = commit_tag_match.group(1)
value = commit_tag_match.group(2)
if name == 'notes':
- self._add_to_commit(line, name, value)
+ self._add_to_commit(name)
self.skip_blank = True
elif name == 'changes':
self.in_change = 'Commit'