mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
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>
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user