diff options
author | Simon Glass <sjg@chromium.org> | 2016-07-05 17:10:09 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-07-27 14:15:07 -0600 |
commit | 2e3f1ff63f50f36e74d46f939823241856ebf1bd (patch) | |
tree | 09700299a68afb9e9ddd02583f30c81a786a3fb2 /arch | |
parent | cc7f66f70cc2c59fe8ebf9011658447815278894 (diff) | |
download | u-boot-imx-2e3f1ff63f50f36e74d46f939823241856ebf1bd.zip u-boot-imx-2e3f1ff63f50f36e74d46f939823241856ebf1bd.tar.gz u-boot-imx-2e3f1ff63f50f36e74d46f939823241856ebf1bd.tar.bz2 |
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 'arch')
-rw-r--r-- | arch/x86/lib/lpc-uclass.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/lib/lpc-uclass.c b/arch/x86/lib/lpc-uclass.c index c6e8f73..b8254ff 100644 --- a/arch/x86/lib/lpc-uclass.c +++ b/arch/x86/lib/lpc-uclass.c @@ -7,7 +7,6 @@ #include <common.h> #include <dm.h> -#include <dm/root.h> DECLARE_GLOBAL_DATA_PTR; @@ -19,8 +18,7 @@ static int lpc_uclass_post_bind(struct udevice *bus) * Before relocation, only bind devices marked for pre-relocation * use. */ - return dm_scan_fdt_node(bus, gd->fdt_blob, bus->of_offset, - gd->flags & GD_FLG_RELOC ? false : true); + return dm_scan_fdt_dev(bus); } UCLASS_DRIVER(lpc) = { |