aboutsummaryrefslogtreecommitdiff
path: root/drivers/core/lists.c
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2019-12-24 23:52:01 -0500
committerSimon Glass <sjg@chromium.org>2020-01-07 16:03:01 -0700
commit7fc0c2b18702555f5a60f0a206e7c385cf76e543 (patch)
tree07584078587fe84bdc9f7e57c18e168dd2e065d1 /drivers/core/lists.c
parent63736e9c9622147672a0782c630f529c92bcb7b5 (diff)
downloadu-boot-7fc0c2b18702555f5a60f0a206e7c385cf76e543.zip
u-boot-7fc0c2b18702555f5a60f0a206e7c385cf76e543.tar.gz
u-boot-7fc0c2b18702555f5a60f0a206e7c385cf76e543.tar.bz2
dm: Add a debug message when devices are skipped pre-reloc
This adds a message to lists_bind_fdt when it skips initializing a device pre-relocation. I've had a couple errors where a device didn't initialize properly because one of its dependencies was missing. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/core/lists.c')
-rw-r--r--drivers/core/lists.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/core/lists.c b/drivers/core/lists.c
index 4681b3e..68204c3 100644
--- a/drivers/core/lists.c
+++ b/drivers/core/lists.c
@@ -176,8 +176,10 @@ int lists_bind_fdt(struct udevice *parent, ofnode node, struct udevice **devp,
if (pre_reloc_only) {
if (!dm_ofnode_pre_reloc(node) &&
- !(entry->flags & DM_FLAG_PRE_RELOC))
+ !(entry->flags & DM_FLAG_PRE_RELOC)) {
+ log_debug("Skipping device pre-relocation\n");
return 0;
+ }
}
log_debug(" - found match at '%s': '%s' matches '%s'\n",