Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

of: property: Make 'no port node found' output a debug message

There are cases where an unavailable port is not an error, making this
error message a false-positive. Since commit d56de8c9a17d8 ("usb: typec:
tcpm: try to get role switch from tcpc fwnode") the role switch is tried
on the port dev first and tcpc fwnode afterwards. If using the latter
bindings getting from port dev fails every time. The kernel log is flooded
with the messages like:
OF: graph: no port node found in /soc@0/bus@42000000/i2c@42530000/usb-typec@50
Silence this message by making it a debug message.

Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Link: https://lore.kernel.org/r/20240117083206.2901534-1-alexander.stein@ew.tq-group.com
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Alexander Stein and committed by
Rob Herring
e20cd62b 3b8435db

+1 -1
+1 -1
drivers/of/property.c
··· 665 665 of_node_put(node); 666 666 667 667 if (!port) { 668 - pr_err("graph: no port node found in %pOF\n", parent); 668 + pr_debug("graph: no port node found in %pOF\n", parent); 669 669 return NULL; 670 670 } 671 671 } else {