summaryrefslogtreecommitdiff
path: root/tools/binman/etype/u_boot_spl.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/binman/etype/u_boot_spl.py')
-rw-r--r--tools/binman/etype/u_boot_spl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/etype/u_boot_spl.py b/tools/binman/etype/u_boot_spl.py
index a6fddbe8f1..d66e46140b 100644
--- a/tools/binman/etype/u_boot_spl.py
+++ b/tools/binman/etype/u_boot_spl.py
@@ -32,7 +32,7 @@ class Entry_u_boot_spl(Entry_blob):
binman uses that to look up symbols to write into the SPL binary.
"""
def __init__(self, section, etype, node):
- Entry_blob.__init__(self, section, etype, node)
+ super().__init__(section, etype, node)
self.elf_fname = 'spl/u-boot-spl'
def GetDefaultFilename(self):