mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00: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:
parent
cc7f66f70c
commit
2e3f1ff63f
20 changed files with 20 additions and 51 deletions
|
@ -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) = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue