summaryrefslogtreecommitdiff
path: root/drivers/core/syscon-uclass.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-09-30 09:07:06 -0400
committerTom Rini <trini@konsulko.com>2020-09-30 09:07:06 -0400
commit527fad0b2484bf1dd4c443c4c8f4384aa256938f (patch)
treee50b2e3551ce9ac05713b1204e63faea793e94f7 /drivers/core/syscon-uclass.c
parent0ac83d080a0044cd0d8f782ba12f02cf969d3004 (diff)
parentceb70bb870ac0761992d3e38e9287a338e3b846a (diff)
Merge branch '2020-09-29-dev_xxx-print-improvement' into next
- Improve our dev_xxx(..) wrappers to be generally used and available rather than discarded at link/compile time.
Diffstat (limited to 'drivers/core/syscon-uclass.c')
-rw-r--r--drivers/core/syscon-uclass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/syscon-uclass.c b/drivers/core/syscon-uclass.c
index 9cbda4ebdae..5be1d527a0a 100644
--- a/drivers/core/syscon-uclass.c
+++ b/drivers/core/syscon-uclass.c
@@ -70,7 +70,7 @@ static int syscon_probe_by_ofnode(ofnode node, struct udevice **devp)
/* found node with "syscon" compatible, not bounded to SYSCON UCLASS */
if (!ofnode_device_is_compatible(node, "syscon")) {
- dev_dbg(dev, "invalid compatible for syscon device\n");
+ log_debug("invalid compatible for syscon device\n");
return -EINVAL;
}