2022-06-30 07:47:07

by Tommaso Merciai

[permalink] [raw]
Subject: [PATCH v4 2/6] media: ov5693: add dvdd into ov5693_supply_names array

Add missing "dvdd" (Digital circuit power) entry into ov5693_supply_names
array

Signed-off-by: Tommaso Merciai <[email protected]>
Reviewed-by: Jacopo Mondi <[email protected]>
---
Changes since v3:
- Add reviewed-by tag, suggested by Jacopo, Krzysztof

drivers/media/i2c/ov5693.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/media/i2c/ov5693.c b/drivers/media/i2c/ov5693.c
index f410333c4c67..9e84468d920e 100644
--- a/drivers/media/i2c/ov5693.c
+++ b/drivers/media/i2c/ov5693.c
@@ -132,6 +132,7 @@
static const char * const ov5693_supply_names[] = {
"avdd", /* Analog power */
"dovdd", /* Digital I/O power */
+ "dvdd", /* Digital circuit power */
};

#define OV5693_NUM_SUPPLIES ARRAY_SIZE(ov5693_supply_names)
--
2.25.1


2022-06-30 10:23:36

by Daniel Scally

[permalink] [raw]
Subject: Re: [PATCH v4 2/6] media: ov5693: add dvdd into ov5693_supply_names array

Hello


On 30/06/2022 08:45, Tommaso Merciai wrote:
> Add missing "dvdd" (Digital circuit power) entry into ov5693_supply_names
> array
>
> Signed-off-by: Tommaso Merciai <[email protected]>
> Reviewed-by: Jacopo Mondi <[email protected]>


Reviewed-by: Daniel Scally <[email protected]>

> ---
> Changes since v3:
> - Add reviewed-by tag, suggested by Jacopo, Krzysztof
>
> drivers/media/i2c/ov5693.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/media/i2c/ov5693.c b/drivers/media/i2c/ov5693.c
> index f410333c4c67..9e84468d920e 100644
> --- a/drivers/media/i2c/ov5693.c
> +++ b/drivers/media/i2c/ov5693.c
> @@ -132,6 +132,7 @@
> static const char * const ov5693_supply_names[] = {
> "avdd", /* Analog power */
> "dovdd", /* Digital I/O power */
> + "dvdd", /* Digital circuit power */
> };
>
> #define OV5693_NUM_SUPPLIES ARRAY_SIZE(ov5693_supply_names)