diff options
author | Simon Glass | 2016-07-05 17:10:09 -0600 |
---|---|---|
committer | Simon Glass | 2016-07-27 14:15:07 -0600 |
commit | 2e3f1ff63f50f36e74d46f939823241856ebf1bd (patch) | |
tree | 09700299a68afb9e9ddd02583f30c81a786a3fb2 /common/usb_hub.c | |
parent | cc7f66f70cc2c59fe8ebf9011658447815278894 (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 'common/usb_hub.c')
-rw-r--r-- | common/usb_hub.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/usb_hub.c b/common/usb_hub.c index 0f39c9faf7e..26ee13e1499 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) |