summaryrefslogtreecommitdiff
path: root/test/dm/test-main.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-11-29 03:50:09 +0300
committerSimon Glass <sjg@chromium.org>2020-12-13 17:58:18 +0300
commit725e4fce61e5b8339fdc975b01ce7bb3dd9fa5f4 (patch)
treee1f7b772007575a08423e467a124a0c1c6886c45 /test/dm/test-main.c
parent2ebea5eaebf2c11c3f18f553d1bceba22e220893 (diff)
downloadu-boot-725e4fce61e5b8339fdc975b01ce7bb3dd9fa5f4.tar.xz
dm: core: Drop unused parameter from dm_scan_fdt()
This doesn't need to be passed the devicetree anymore. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/dm/test-main.c')
-rw-r--r--test/dm/test-main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dm/test-main.c b/test/dm/test-main.c
index fd24635006..2ab73b647e 100644
--- a/test/dm/test-main.c
+++ b/test/dm/test-main.c
@@ -213,7 +213,7 @@ int dm_test_main(const char *test_name)
ut_assertok(dm_init(CONFIG_IS_ENABLED(OF_LIVE)));
dm_scan_platdata(false);
if (!CONFIG_IS_ENABLED(OF_PLATDATA))
- dm_scan_fdt(gd->fdt_blob, false);
+ dm_scan_fdt(false);
return uts->fail_count ? CMD_RET_FAILURE : 0;
}