2024-02-23 11:36:12

by Marco Felsch

[permalink] [raw]
Subject: [PATCH] of: property: lower loglevel of of_graph_get_next_endpoint

Drivers like the tcpm.c do search for a remote endpoint on different
places to be dt-bindings compatible. The search is done on the device
itself or on the child fwnode in case it was not found the first time.

This indicates that not finding the remote endpoint at the first try is
a valid use-case and should not cause an error printing.

Signed-off-by: Marco Felsch <[email protected]>
---
Hi,

I'm not 100% certain if this is the correct place but if our platform
follows the dt-bindings we receive

| OF: graph: no port node found in /soc@0/bus@30800000/i2c@30a30000/tcpc@50

a few times because of the below pr_err() and EPROBE_DEFER.

Regards,
Marco

drivers/of/property.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/of/property.c b/drivers/of/property.c
index 641a40cf5cf3..155df04a9512 100644
--- a/drivers/of/property.c
+++ b/drivers/of/property.c
@@ -665,7 +665,7 @@ struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
of_node_put(node);

if (!port) {
- pr_err("graph: no port node found in %pOF\n", parent);
+ pr_notice("graph: no port node found in %pOF\n", parent);
return NULL;
}
} else {
--
2.39.2



2024-03-01 21:03:37

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH] of: property: lower loglevel of of_graph_get_next_endpoint

On Fri, Feb 23, 2024 at 11:47:21AM +0100, Marco Felsch wrote:
> Drivers like the tcpm.c do search for a remote endpoint on different
> places to be dt-bindings compatible. The search is done on the device
> itself or on the child fwnode in case it was not found the first time.
>
> This indicates that not finding the remote endpoint at the first try is
> a valid use-case and should not cause an error printing.
>
> Signed-off-by: Marco Felsch <[email protected]>
> ---
> Hi,
>
> I'm not 100% certain if this is the correct place but if our platform
> follows the dt-bindings we receive
>
> | OF: graph: no port node found in /soc@0/bus@30800000/i2c@30a30000/tcpc@50
>
> a few times because of the below pr_err() and EPROBE_DEFER.
>
> Regards,
> Marco
>
> drivers/of/property.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/of/property.c b/drivers/of/property.c
> index 641a40cf5cf3..155df04a9512 100644
> --- a/drivers/of/property.c
> +++ b/drivers/of/property.c
> @@ -665,7 +665,7 @@ struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
> of_node_put(node);
>
> if (!port) {
> - pr_err("graph: no port node found in %pOF\n", parent);
> + pr_notice("graph: no port node found in %pOF\n", parent);

Already changed to pr_debug.

Rob

2024-03-04 07:38:01

by Marco Felsch

[permalink] [raw]
Subject: Re: [PATCH] of: property: lower loglevel of of_graph_get_next_endpoint

On 24-03-01, Rob Herring wrote:
> On Fri, Feb 23, 2024 at 11:47:21AM +0100, Marco Felsch wrote:
> > Drivers like the tcpm.c do search for a remote endpoint on different
> > places to be dt-bindings compatible. The search is done on the device
> > itself or on the child fwnode in case it was not found the first time.
> >
> > This indicates that not finding the remote endpoint at the first try is
> > a valid use-case and should not cause an error printing.
> >
> > Signed-off-by: Marco Felsch <[email protected]>
> > ---
> > Hi,
> >
> > I'm not 100% certain if this is the correct place but if our platform
> > follows the dt-bindings we receive
> >
> > | OF: graph: no port node found in /soc@0/bus@30800000/i2c@30a30000/tcpc@50
> >
> > a few times because of the below pr_err() and EPROBE_DEFER.
> >
> > Regards,
> > Marco
> >
> > drivers/of/property.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/of/property.c b/drivers/of/property.c
> > index 641a40cf5cf3..155df04a9512 100644
> > --- a/drivers/of/property.c
> > +++ b/drivers/of/property.c
> > @@ -665,7 +665,7 @@ struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
> > of_node_put(node);
> >
> > if (!port) {
> > - pr_err("graph: no port node found in %pOF\n", parent);
> > + pr_notice("graph: no port node found in %pOF\n", parent);
>
> Already changed to pr_debug.

Ah.. didn't noticed that albeit I was sitting on rc4 while preparing
this patch. Thanks for the info :)

Regards,
Marco


>
> Rob
>