All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] media: ov5640: set correct default link frequency
@ 2022-11-25  9:20 Guoniu.zhou
  2022-11-28 14:29 ` Laurent Pinchart
  0 siblings, 1 reply; 2+ messages in thread
From: Guoniu.zhou @ 2022-11-25  9:20 UTC (permalink / raw)
  To: linux-media
  Cc: slongerbeam, mchehab, sakari.ailus, hugues.fruchet,
	laurent.pinchart, jacopo

current_link_freq field in ov5640_dev structure is link frequency,
not link frequency array index, so correct it.

Fixes: 3c28588f35d3 ("media: ov5640: Update pixel_rate and link_freq")
Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
Acked-by: Jacopo Mondi <jacopo@jmondi.org>
---
v3:
  - Remove empty line after Fixes: 3c28588f35d3 ("media: ov5640: Update pixel_rate and link_freq")
  - Add "Acked-by: Jacopo Mondi <jacopo@jmondi.org>"

v2:
 - Correct typo issue(s/structrue/structure)
---
 drivers/media/i2c/ov5640.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
index 2d740397a5d4..3f6d715efa82 100644
--- a/drivers/media/i2c/ov5640.c
+++ b/drivers/media/i2c/ov5640.c
@@ -3817,7 +3817,8 @@ static int ov5640_probe(struct i2c_client *client)
 	sensor->current_mode =
 		&ov5640_mode_data[OV5640_MODE_VGA_640_480];
 	sensor->last_mode = sensor->current_mode;
-	sensor->current_link_freq = OV5640_DEFAULT_LINK_FREQ;
+	sensor->current_link_freq =
+		ov5640_csi2_link_freqs[OV5640_DEFAULT_LINK_FREQ];
 
 	sensor->ae_target = 52;
 
-- 
2.37.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v3] media: ov5640: set correct default link frequency
  2022-11-25  9:20 [PATCH v3] media: ov5640: set correct default link frequency Guoniu.zhou
@ 2022-11-28 14:29 ` Laurent Pinchart
  0 siblings, 0 replies; 2+ messages in thread
From: Laurent Pinchart @ 2022-11-28 14:29 UTC (permalink / raw)
  To: Guoniu.zhou
  Cc: linux-media, slongerbeam, mchehab, sakari.ailus, hugues.fruchet, jacopo

Hi Guoniu zhou,

Thank you for the patch.

On Fri, Nov 25, 2022 at 05:20:24PM +0800, Guoniu.zhou wrote:
> current_link_freq field in ov5640_dev structure is link frequency,
> not link frequency array index, so correct it.
> 
> Fixes: 3c28588f35d3 ("media: ov5640: Update pixel_rate and link_freq")
> Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
> Acked-by: Jacopo Mondi <jacopo@jmondi.org>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
> v3:
>   - Remove empty line after Fixes: 3c28588f35d3 ("media: ov5640: Update pixel_rate and link_freq")
>   - Add "Acked-by: Jacopo Mondi <jacopo@jmondi.org>"
> 
> v2:
>  - Correct typo issue(s/structrue/structure)
> ---
>  drivers/media/i2c/ov5640.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
> index 2d740397a5d4..3f6d715efa82 100644
> --- a/drivers/media/i2c/ov5640.c
> +++ b/drivers/media/i2c/ov5640.c
> @@ -3817,7 +3817,8 @@ static int ov5640_probe(struct i2c_client *client)
>  	sensor->current_mode =
>  		&ov5640_mode_data[OV5640_MODE_VGA_640_480];
>  	sensor->last_mode = sensor->current_mode;
> -	sensor->current_link_freq = OV5640_DEFAULT_LINK_FREQ;
> +	sensor->current_link_freq =
> +		ov5640_csi2_link_freqs[OV5640_DEFAULT_LINK_FREQ];
>  
>  	sensor->ae_target = 52;
>  

-- 
Regards,

Laurent Pinchart

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-28 14:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-25  9:20 [PATCH v3] media: ov5640: set correct default link frequency Guoniu.zhou
2022-11-28 14:29 ` Laurent Pinchart

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.