binman: Make the operation of Entry__testing explicit
[oweals/u-boot.git] / tools / binman / etype / intel_fsp.py
index d75be5b9563de31dbdeabffec77dfaf821a3eb5b..cb80a617c32fa39160ede109c723baa9a06467ea 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 Intel Firmware Support Package binary blob
 #
 
@@ -10,8 +9,5 @@ from entry import Entry
 from blob import Entry_blob
 
 class Entry_intel_fsp(Entry_blob):
-    def __init__(self, image, etype, node):
-        Entry_blob.__init__(self, image, etype, node)
-
-    def GetDefaultFilename(self):
-        return 'fsp.bin'
+    def __init__(self, section, etype, node):
+        Entry_blob.__init__(self, section, etype, node)