]> git.sur5r.net Git - u-boot/blobdiff - tools/binman/etype/u_boot_spl_nodtb.py
binman: Rename Entry property to 'section'
[u-boot] / tools / binman / etype / u_boot_spl_nodtb.py
index 880e0c78fbc0baff6ab7210434c6bd8e427f38cd..99e56ebe3bfd29674b1b5139905afb211d739d3e 100644 (file)
@@ -1,8 +1,7 @@
+# SPDX-License-Identifier: GPL-2.0+
 # Copyright (c) 2016 Google, Inc
 # Written by Simon Glass <sjg@chromium.org>
 #
-# SPDX-License-Identifier:      GPL-2.0+
-#
 # Entry-type module for 'u-boot-nodtb.bin'
 #
 
@@ -10,8 +9,8 @@ from entry import Entry
 from blob import Entry_blob
 
 class Entry_u_boot_spl_nodtb(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)
 
     def GetDefaultFilename(self):
         return 'spl/u-boot-spl-nodtb.bin'