summaryrefslogtreecommitdiff
path: root/tools/binman/etype/intel_me.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-06-01 09:38:14 -0600
committerSimon Glass <sjg@chromium.org>2018-06-07 11:25:08 -0800
commit25ac0e61fe5612d28cbc98654fb325d762f4411b (patch)
tree7234285f293e8978b84c54b67d43cfc337167ae5 /tools/binman/etype/intel_me.py
parentf55382b5e55b6922aebe45658ac72381fc205d23 (diff)
binman: Rename Entry property to 'section'
Entries are now passed a Section object rather than an Image. Rename this property to avoid confusion. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/etype/intel_me.py')
-rw-r--r--tools/binman/etype/intel_me.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/etype/intel_me.py b/tools/binman/etype/intel_me.py
index e02e485987..0682ead943 100644
--- a/tools/binman/etype/intel_me.py
+++ b/tools/binman/etype/intel_me.py
@@ -9,5 +9,5 @@ from entry import Entry
from blob import Entry_blob
class Entry_intel_me(Entry_blob):
- def __init__(self, image, etype, node):
- Entry_blob.__init__(self, image, etype, node)
+ def __init__(self, section, etype, node):
+ Entry_blob.__init__(self, section, etype, node)