summaryrefslogtreecommitdiff
path: root/drivers/core/lists.c
diff options
context:
space:
mode:
authorMarkus Schneider-Pargmann (TI) <[email protected]>2026-01-27 12:03:38 +0100
committerTom Rini <[email protected]>2026-01-28 09:20:59 -0600
commit87d7d8190f5cc17abc104f924e0f499fda2fd02e (patch)
treef82f785dffb53db1dcabcab2977025dcddb7ccdb /drivers/core/lists.c
parent6668b8e7cc68ee287ef87e18aadc97bf88cea4db (diff)
dm: core: lists_bind_fdt: Indent continuation debug log message
The loop in lists_bind_fdt uses an indented style for log messages within the loop and normal messages for errors that lead to the exit of the function. Due to the change of the previous patch that adds support for continuation on -ENODEV returned by bind, the log message should be indented. Signed-off-by: Markus Schneider-Pargmann (TI) <[email protected]>
Diffstat (limited to 'drivers/core/lists.c')
-rw-r--r--drivers/core/lists.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/lists.c b/drivers/core/lists.c
index 813c3de52b2..2545dc142f6 100644
--- a/drivers/core/lists.c
+++ b/drivers/core/lists.c
@@ -266,7 +266,7 @@ int lists_bind_fdt(struct udevice *parent, ofnode node, struct udevice **devp,
id ? id->data : 0, node,
&dev);
if (!drv && ret == -ENODEV) {
- log_debug("Driver '%s' refuses to bind\n", entry->name);
+ log_debug(" - Driver '%s' refuses to bind\n", entry->name);
continue;
}
if (ret) {