[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4ad28210-0827-c86e-b2a3-b7ed49a191d3@gmail.com>
Date: Thu, 30 Jun 2022 11:12:32 +0100
From: Daniel Scally <djrscally@...il.com>
To: Tommaso Merciai <tommaso.merciai@...rulasolutions.com>
Cc: linuxfancy@...glegroups.com, linux-amarula@...rulasolutions.com,
quentin.schulz@...obroma-systems.com,
Jacopo Mondi <jacopo@...ndi.org>,
Sakari Ailus <sakari.ailus@....fi>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
linux-media@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v4 6/6] media: ov5693: add ov5693_of_match, dts support
Hello
On 30/06/2022 08:45, Tommaso Merciai wrote:
> Add ov5693_of_match. Device tree support
>
> Signed-off-by: Tommaso Merciai <tommaso.merciai@...rulasolutions.com>
> Reviewed-by: Jacopo Mondi <jacopo@...ndi.org>
> Reviewed-by: Sakari Ailus <sakari.ailus@....fi>
Reviewed-by: Daniel Scally <djrscally@...il.com>
> ---
> Changes since v2:
> - Change patch order 7 -> 6 as suggested by Sakari
> - Add missing signed-off as suggested by Jacopo
>
> Changes since v3:
> - Add reviewed-by tags, suggested by Jacopo, Krzysztof
>
> drivers/media/i2c/ov5693.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/media/i2c/ov5693.c b/drivers/media/i2c/ov5693.c
> index 3c805a5a5181..5930207193c7 100644
> --- a/drivers/media/i2c/ov5693.c
> +++ b/drivers/media/i2c/ov5693.c
> @@ -1532,10 +1532,17 @@ static const struct acpi_device_id ov5693_acpi_match[] = {
> };
> MODULE_DEVICE_TABLE(acpi, ov5693_acpi_match);
>
> +static const struct of_device_id ov5693_of_match[] = {
> + { .compatible = "ovti,ov5693", },
> + { /* sentinel */ },
> +};
> +MODULE_DEVICE_TABLE(of, ov5693_of_match);
> +
> static struct i2c_driver ov5693_driver = {
> .driver = {
> .name = "ov5693",
> .acpi_match_table = ov5693_acpi_match,
> + .of_match_table = ov5693_of_match,
> .pm = &ov5693_pm_ops,
> },
> .probe_new = ov5693_probe,
Powered by blists - more mailing lists