[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20220331114006.0c7bc47a@fixe.home>
Date: Thu, 31 Mar 2022 11:40:06 +0200
From: Clément Léger <clement.leger@...tlin.com>
To: Peter Rosin <peda@...ntia.se>
Cc: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Daniel Scally <djrscally@...il.com>,
Heikki Krogerus <heikki.krogerus@...ux.intel.com>,
Sakari Ailus <sakari.ailus@...ux.intel.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
"Rafael J . Wysocki" <rafael@...nel.org>,
Wolfram Sang <wsa@...nel.org>,
Rob Herring <robh+dt@...nel.org>,
Frank Rowand <frowand.list@...il.com>,
Len Brown <lenb@...nel.org>,
Hans de Goede <hdegoede@...hat.com>,
Thomas Petazzoni <thomas.petazzoni@...tlin.com>,
Alexandre Belloni <alexandre.belloni@...tlin.com>,
Allan Nielsen <allan.nielsen@...rochip.com>,
linux-kernel@...r.kernel.org, linux-acpi@...r.kernel.org,
linux-i2c@...r.kernel.org, devicetree@...r.kernel.org
Subject: Re: [PATCH v3 8/9] i2c: mux: pinctrl: remove CONFIG_OF dependency
and use fwnode API
Le Fri, 25 Mar 2022 17:48:19 +0100,
Peter Rosin <peda@...ntia.se> a écrit :
> >
> > - parent_np = of_parse_phandle(np, "i2c-parent", 0);
> > - if (!parent_np) {
> > + parent_fwnode = fwnode_find_reference(fwnode, "i2c-parent", 0);
> > + if (!parent_fwnode) {
> > dev_err(dev, "Cannot parse i2c-parent\n");
> > return ERR_PTR(-ENODEV);
> > }
> > - parent = of_find_i2c_adapter_by_node(parent_np);
> > - of_node_put(parent_np);
> > - if (!parent)
> > + parent = fwnode_find_i2c_adapter_by_node(parent_fwnode);
> > + if (!parent) {
> > + dev_err(dev, "Cannot find i2c-parent\n");
>
> Why do we need to log this as an error?
Hi Peter, sorry for the late answer, your mail ended up in my SPAM
folder.
Regarding the error logging, you are right, this is not needed. I'll
remove it.
Thanks,
Clément
--
Clément Léger,
Embedded Linux and Kernel engineer at Bootlin
https://bootlin.com
Powered by blists - more mailing lists