summaryrefslogtreecommitdiff
path: root/drivers/pci/pci_sandbox.c
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 /drivers/pci/pci_sandbox.c
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 'drivers/pci/pci_sandbox.c')
-rw-r--r--drivers/pci/pci_sandbox.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pci/pci_sandbox.c b/drivers/pci/pci_sandbox.c
index 6de5130c2a..b5628139b3 100644
--- a/drivers/pci/pci_sandbox.c
+++ b/drivers/pci/pci_sandbox.c
@@ -10,7 +10,6 @@
#include <fdtdec.h>
#include <inttypes.h>
#include <pci.h>
-#include <dm/root.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -55,7 +54,7 @@ static int sandbox_pci_read_config(struct udevice *bus, pci_dev_t devfn,
static int sandbox_pci_child_post_bind(struct udevice *dev)
{
/* Attach an emulator if we can */
- return dm_scan_fdt_node(dev, gd->fdt_blob, dev->of_offset, false);
+ return dm_scan_fdt_dev(dev);
}
static const struct dm_pci_ops sandbox_pci_ops = {