From 0734b70c9cb59f030a8293b08b947aa793baaa74 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 25 Sep 2016 15:52:17 -0600 Subject: [PATCH] dtoc: Fix bug in GetProp() This does not actually call fdtget correctly when requesting a particular type. Fix it. Signed-off-by: Simon Glass --- tools/dtoc/fdt_fallback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dtoc/fdt_fallback.py b/tools/dtoc/fdt_fallback.py index 0c0ebbcf47..7d52da71f3 100644 --- a/tools/dtoc/fdt_fallback.py +++ b/tools/dtoc/fdt_fallback.py @@ -160,7 +160,7 @@ class FdtFallback(Fdt): if default is not None: args += ['-d', str(default)] if typespec is not None: - args += ['-t%s' % typespec] + args += ['-t', typespec] out = command.Output('fdtget', *args) return out.strip() -- 2.39.2