[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250331120748.GB28722@pendragon.ideasonboard.com>
Date: Mon, 31 Mar 2025 15:07:48 +0300
From: Laurent Pinchart <laurent.pinchart@...asonboard.com>
To: Kieran Bingham <kieran.bingham+renesas@...asonboard.com>
Cc: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
linux-kernel@...r.kernel.org, linux-media@...r.kernel.org,
acopo Mondi <jacopo+renesas@...ndi.org>,
Mauro Carvalho Chehab <mchehab@...nel.org>
Subject: Re: [PATCH v1 1/1] media: i2c: rdacm2x: Make use of device properties
On Mon, Mar 31, 2025 at 09:16:36AM +0100, Kieran Bingham wrote:
> Quoting Andy Shevchenko (2025-03-31 08:34:35)
> > Convert the module to be property provider agnostic and allow
> > it to be used on non-OF platforms.
>
> Looks reasonable to me.
Is that going to work out of the box though ? The calls below read the
"reg" property to get the device I2C addresses. AFAIK, ACPI handles I2C
addresses using ACPI-specific methods.
Andy, have you tested this patch on an ACPI system ?
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
> > ---
> > drivers/media/i2c/rdacm20.c | 5 ++---
> > drivers/media/i2c/rdacm21.c | 5 ++---
> > 2 files changed, 4 insertions(+), 6 deletions(-)
> >
> > diff --git a/drivers/media/i2c/rdacm20.c b/drivers/media/i2c/rdacm20.c
> > index b8bd8354d100..dcab63d19baf 100644
> > --- a/drivers/media/i2c/rdacm20.c
> > +++ b/drivers/media/i2c/rdacm20.c
> > @@ -16,10 +16,10 @@
> > */
> >
> > #include <linux/delay.h>
> > -#include <linux/fwnode.h>
> > #include <linux/init.h>
> > #include <linux/i2c.h>
> > #include <linux/module.h>
> > +#include <linux/property.h>
> > #include <linux/slab.h>
> > #include <linux/videodev2.h>
> >
> > @@ -575,8 +575,7 @@ static int rdacm20_probe(struct i2c_client *client)
> > dev->dev = &client->dev;
> > dev->serializer.client = client;
> >
> > - ret = of_property_read_u32_array(client->dev.of_node, "reg",
> > - dev->addrs, 2);
> > + ret = device_property_read_u32_array(&client->dev, "reg", dev->addrs, 2);
> > if (ret < 0) {
> > dev_err(dev->dev, "Invalid DT reg property: %d\n", ret);
>
> But this is no longer a DT reg property ?
>
> > return -EINVAL;
> > diff --git a/drivers/media/i2c/rdacm21.c b/drivers/media/i2c/rdacm21.c
> > index 3e22df36354f..5ea6988de48b 100644
> > --- a/drivers/media/i2c/rdacm21.c
> > +++ b/drivers/media/i2c/rdacm21.c
> > @@ -11,10 +11,10 @@
> > */
> >
> > #include <linux/delay.h>
> > -#include <linux/fwnode.h>
> > #include <linux/init.h>
> > #include <linux/i2c.h>
> > #include <linux/module.h>
> > +#include <linux/property.h>
> > #include <linux/slab.h>
> > #include <linux/videodev2.h>
> >
> > @@ -551,8 +551,7 @@ static int rdacm21_probe(struct i2c_client *client)
> > dev->dev = &client->dev;
> > dev->serializer.client = client;
> >
> > - ret = of_property_read_u32_array(client->dev.of_node, "reg",
> > - dev->addrs, 2);
> > + ret = device_property_read_u32_array(&client->dev, "reg", dev->addrs, 2);
> > if (ret < 0) {
> > dev_err(dev->dev, "Invalid DT reg property: %d\n", ret);
>
> Same here ...
>
> With those fixed,
>
> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@...asonboard.com>
>
> > return -EINVAL;
--
Regards,
Laurent Pinchart
Powered by blists - more mailing lists