linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2] media: ov5640: Fix check for PLL1 exceeding max allowed rate
@ 2019-12-04 13:09 Adam Ford
  2019-12-04 13:21 ` Fabio Estevam
  2019-12-04 13:25 ` Jacopo Mondi
  0 siblings, 2 replies; 4+ messages in thread
From: Adam Ford @ 2019-12-04 13:09 UTC (permalink / raw)
  To: linux-media
  Cc: adam.ford, Adam Ford, Jacopo Mondi, Steve Longerbeam,
	Mauro Carvalho Chehab, linux-kernel

The PLL calculation routine checks the wrong variable name 'rate'
when it should be called '_rate' when checking to see whether or
not the PLL1 output frequency exceeds 1GHz.

This patch changes it to the correct variable '_rate'

Acked-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Adam Ford <aford173@gmail.com>
---
V2:  No code change.  Only change commit description to be less confusing.

diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
index 5e495c833d32..bb968e764f31 100644
--- a/drivers/media/i2c/ov5640.c
+++ b/drivers/media/i2c/ov5640.c
@@ -874,7 +874,7 @@ static unsigned long ov5640_calc_sys_clk(struct ov5640_dev *sensor,
 			 * We have reached the maximum allowed PLL1 output,
 			 * increase sysdiv.
 			 */
-			if (!rate)
+			if (!_rate)
 				break;
 
 			/*
-- 
2.20.1


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

* Re: [PATCH V2] media: ov5640: Fix check for PLL1 exceeding max allowed rate
  2019-12-04 13:09 [PATCH V2] media: ov5640: Fix check for PLL1 exceeding max allowed rate Adam Ford
@ 2019-12-04 13:21 ` Fabio Estevam
  2019-12-04 13:25 ` Jacopo Mondi
  1 sibling, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2019-12-04 13:21 UTC (permalink / raw)
  To: Adam Ford
  Cc: linux-media, Adam Ford, Jacopo Mondi, Steve Longerbeam,
	Mauro Carvalho Chehab, linux-kernel

Hi Adam,

On Wed, Dec 4, 2019 at 10:11 AM Adam Ford <aford173@gmail.com> wrote:
>
> The PLL calculation routine checks the wrong variable name 'rate'
> when it should be called '_rate' when checking to see whether or
> not the PLL1 output frequency exceeds 1GHz.
>
> This patch changes it to the correct variable '_rate'
>
> Acked-by: Jacopo Mondi <jacopo@jmondi.org>
> Signed-off-by: Adam Ford <aford173@gmail.com>

Maybe add a Fixes tag too?

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

* Re: [PATCH V2] media: ov5640: Fix check for PLL1 exceeding max allowed rate
  2019-12-04 13:09 [PATCH V2] media: ov5640: Fix check for PLL1 exceeding max allowed rate Adam Ford
  2019-12-04 13:21 ` Fabio Estevam
@ 2019-12-04 13:25 ` Jacopo Mondi
  2019-12-04 13:37   ` Adam Ford
  1 sibling, 1 reply; 4+ messages in thread
From: Jacopo Mondi @ 2019-12-04 13:25 UTC (permalink / raw)
  To: Adam Ford
  Cc: linux-media, adam.ford, Steve Longerbeam, Mauro Carvalho Chehab,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1196 bytes --]

Hi Adam,

On Wed, Dec 04, 2019 at 07:09:07AM -0600, Adam Ford wrote:
> The PLL calculation routine checks the wrong variable name 'rate'
> when it should be called '_rate' when checking to see whether or
> not the PLL1 output frequency exceeds 1GHz.
>
> This patch changes it to the correct variable '_rate'
>
> Acked-by: Jacopo Mondi <jacopo@jmondi.org>
> Signed-off-by: Adam Ford <aford173@gmail.com>

Why have you dropped the fixes tag you had in v1?

Fixes: aa2882481cad ("media: ov5640: Adjust the clock based on the expected rate")

I'm not the one who collects patches, so maybe wait for Sakari or Hans
to tell you if you need to resend or not :)

Thanks
   j

> ---
> V2:  No code change.  Only change commit description to be less confusing.
>
> diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
> index 5e495c833d32..bb968e764f31 100644
> --- a/drivers/media/i2c/ov5640.c
> +++ b/drivers/media/i2c/ov5640.c
> @@ -874,7 +874,7 @@ static unsigned long ov5640_calc_sys_clk(struct ov5640_dev *sensor,
>  			 * We have reached the maximum allowed PLL1 output,
>  			 * increase sysdiv.
>  			 */
> -			if (!rate)
> +			if (!_rate)
>  				break;
>
>  			/*
> --
> 2.20.1
>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH V2] media: ov5640: Fix check for PLL1 exceeding max allowed rate
  2019-12-04 13:25 ` Jacopo Mondi
@ 2019-12-04 13:37   ` Adam Ford
  0 siblings, 0 replies; 4+ messages in thread
From: Adam Ford @ 2019-12-04 13:37 UTC (permalink / raw)
  To: Jacopo Mondi
  Cc: linux-media, Adam Ford, Steve Longerbeam, Mauro Carvalho Chehab,
	Linux Kernel Mailing List

On Wed, Dec 4, 2019 at 7:23 AM Jacopo Mondi <jacopo@jmondi.org> wrote:
>
> Hi Adam,
>
> On Wed, Dec 04, 2019 at 07:09:07AM -0600, Adam Ford wrote:
> > The PLL calculation routine checks the wrong variable name 'rate'
> > when it should be called '_rate' when checking to see whether or
> > not the PLL1 output frequency exceeds 1GHz.
> >
> > This patch changes it to the correct variable '_rate'
> >
> > Acked-by: Jacopo Mondi <jacopo@jmondi.org>
> > Signed-off-by: Adam Ford <aford173@gmail.com>
>
> Why have you dropped the fixes tag you had in v1?
>
> Fixes: aa2882481cad ("media: ov5640: Adjust the clock based on the expected rate")
>
> I'm not the one who collects patches, so maybe wait for Sakari or Hans
> to tell you if you need to resend or not :)

It wasn't intentional.  I couldn't find the original patch nor could I
find it in patchwork, so I re-did it from scratch and forgot.
(I have too many different computers)

I already sent a V3 before I read your e-mail.  Sorry about that.

adam

>
> Thanks
>    j
>
> > ---
> > V2:  No code change.  Only change commit description to be less confusing.
> >
> > diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
> > index 5e495c833d32..bb968e764f31 100644
> > --- a/drivers/media/i2c/ov5640.c
> > +++ b/drivers/media/i2c/ov5640.c
> > @@ -874,7 +874,7 @@ static unsigned long ov5640_calc_sys_clk(struct ov5640_dev *sensor,
> >                        * We have reached the maximum allowed PLL1 output,
> >                        * increase sysdiv.
> >                        */
> > -                     if (!rate)
> > +                     if (!_rate)
> >                               break;
> >
> >                       /*
> > --
> > 2.20.1
> >

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

end of thread, other threads:[~2019-12-04 13:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-04 13:09 [PATCH V2] media: ov5640: Fix check for PLL1 exceeding max allowed rate Adam Ford
2019-12-04 13:21 ` Fabio Estevam
2019-12-04 13:25 ` Jacopo Mondi
2019-12-04 13:37   ` Adam Ford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).