diff options
author | Simon Glass <sjg@chromium.org> | 2024-07-20 11:49:38 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2024-07-29 08:42:18 -0600 |
commit | 32fdd92e36d4fdc9beae7a405b90b61301e52bed (patch) | |
tree | 625fb9e1a1e65cdc846cb5b7f4d58d2cb64325de | |
parent | d720be4766e91459e92197d9b112958e943d66c3 (diff) | |
download | u-boot-32fdd92e36d4fdc9beae7a405b90b61301e52bed.tar.gz u-boot-32fdd92e36d4fdc9beae7a405b90b61301e52bed.tar.bz2 u-boot-32fdd92e36d4fdc9beae7a405b90b61301e52bed.zip |
binman: Correct comment in blob_dtb GetFdtEtype()
The filenames are a bit confused. Fix them.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | tools/binman/etype/blob_dtb.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/binman/etype/blob_dtb.py b/tools/binman/etype/blob_dtb.py index d543de9f75..1471ded221 100644 --- a/tools/binman/etype/blob_dtb.py +++ b/tools/binman/etype/blob_dtb.py @@ -57,7 +57,9 @@ class Entry_blob_dtb(Entry_blob): def GetFdtEtype(self): """Get the entry type of this device tree - This can be 'u-boot-dtb', 'u-boot-spl-dtb' or 'u-boot-tpl-dtb' + This can be 'u-boot-dtb', 'u-boot-spl-dtb', 'u-boot-tpl-dtb' or + 'u-boot-vpl-dtb' + Returns: Entry type if any, e.g. 'u-boot-dtb' """ |