summaryrefslogtreecommitdiff
path: root/common/usb_hub.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-07-05 23:10:09 (GMT)
committerSimon Glass <sjg@chromium.org>2016-07-27 20:15:07 (GMT)
commit2e3f1ff63f50f36e74d46f939823241856ebf1bd (patch)
tree09700299a68afb9e9ddd02583f30c81a786a3fb2 /common/usb_hub.c
parentcc7f66f70cc2c59fe8ebf9011658447815278894 (diff)
downloadu-boot-fsl-qoriq-2e3f1ff63f50f36e74d46f939823241856ebf1bd.tar.xz
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 'common/usb_hub.c')
-rw-r--r--common/usb_hub.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/usb_hub.c b/common/usb_hub.c
index 0f39c9f..26ee13e 100644
--- a/common/usb_hub.c
+++ b/common/usb_hub.c
@@ -36,7 +36,6 @@
#include <asm/state.h>
#endif
#include <asm/unaligned.h>
-#include <dm/root.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -758,7 +757,7 @@ int usb_hub_scan(struct udevice *hub)
static int usb_hub_post_bind(struct udevice *dev)
{
/* Scan the bus for devices */
- return dm_scan_fdt_node(dev, gd->fdt_blob, dev->of_offset, false);
+ return dm_scan_fdt_dev(dev);
}
static int usb_hub_post_probe(struct udevice *dev)