summaryrefslogtreecommitdiff
path: root/tools/binman/etype
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2017-01-18 11:32:59 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2017-02-07 05:27:17 (GMT)
commitcdfc0a055d1988c7531799754feeeda8f4deea28 (patch)
tree8b257a0f3ff6c28415eacc72ec2b20ef00727368 /tools/binman/etype
parent399de922ff74a215964cd039c5025538f75e6b73 (diff)
downloadu-boot-cdfc0a055d1988c7531799754feeeda8f4deea28.tar.xz
tools: binman: Call correct init for Entry_u_boot_spl_with_ucode_ptr
u_boot_spl_with_ucode_ptr is derived from u_boot_with_ucode_ptr, hence it should call its parent's init. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/etype')
-rw-r--r--tools/binman/etype/u_boot_spl_with_ucode_ptr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/etype/u_boot_spl_with_ucode_ptr.py b/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
index 764c282..1c6706d 100644
--- a/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
+++ b/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
@@ -21,7 +21,7 @@ class Entry_u_boot_spl_with_ucode_ptr(Entry_u_boot_with_ucode_ptr):
process.
"""
def __init__(self, image, etype, node):
- Entry_blob.__init__(self, image, etype, node)
+ Entry_u_boot_with_ucode_ptr.__init__(self, image, etype, node)
self.elf_fname = 'spl/u-boot-spl'
def GetDefaultFilename(self):