summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-07-05 17:10:09 -0600
committerSimon Glass <sjg@chromium.org>2016-07-27 14:15:07 -0600
commit2e3f1ff63f50f36e74d46f939823241856ebf1bd (patch)
tree09700299a68afb9e9ddd02583f30c81a786a3fb2 /test
parentcc7f66f70cc2c59fe8ebf9011658447815278894 (diff)
dm: Convert users from dm_scan_fdt_node() to dm_scan_fdt_dev()
This new function is more convenient for callers, and handles pre-relocation situations automatically. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/dm/bus.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/dm/bus.c b/test/dm/bus.c
index 3b5a23b934..d94dcf7a60 100644
--- a/test/dm/bus.c
+++ b/test/dm/bus.c
@@ -7,7 +7,6 @@
#include <common.h>
#include <dm.h>
#include <dm/device-internal.h>
-#include <dm/root.h>
#include <dm/test.h>
#include <dm/uclass-internal.h>
#include <dm/util.h>
@@ -30,7 +29,7 @@ static struct dm_test_state *test_state;
static int testbus_drv_probe(struct udevice *dev)
{
- return dm_scan_fdt_node(dev, gd->fdt_blob, dev->of_offset, false);
+ return dm_scan_fdt_dev(dev);
}
static int testbus_child_post_bind(struct udevice *dev)