linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error
@ 2013-11-27  0:49 Paul Walmsley
  2013-11-27  1:32 ` Laurent Pinchart
  2013-11-28  7:43 ` Simon Horman
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Walmsley @ 2013-11-27  0:49 UTC (permalink / raw)
  To: linux-arm-kernel


Treat both negative and zero return values from clk_round_rate() as
errors.  This is needed since subsequent patches will convert
clk_round_rate()'s return value to be an unsigned type, rather than a
signed type, since some clock sources can generate rates higher than
(2^31)-1 Hz.

Eventually, when calling clk_round_rate(), only a return value of zero
will be considered a error.  All other values will be considered valid
rates.  The comparison against values less than 0 is kept to preserve
the correct behavior in the meantime.

Signed-off-by: Paul Walmsley <pwalmsley@nvidia.com>
Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Cc: Simon Horman <horms@verge.net.au>
Cc: Magnus Damm <magnus.damm@gmail.com>
---
Applies on v3.13-rc1.  See also:

     http://marc.info/?l=linux-arm-kernel&m=138542591313620&w=2

  arch/arm/mach-shmobile/board-mackerel.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c
index af06753eb809..d90d2f11071b 100644
--- a/arch/arm/mach-shmobile/board-mackerel.c
+++ b/arch/arm/mach-shmobile/board-mackerel.c
@@ -548,9 +548,9 @@ static void __init hdmi_init_pm_clock(void)
  		 clk_get_rate(&sh7372_pllc2_clk));

  	rate = clk_round_rate(&sh7372_pllc2_clk, 594000000);
-	if (rate < 0) {
+	if (rate <= 0) {
  		pr_err("Cannot get suitable rate: %ld\n", rate);
-		ret = rate;
+		ret = -EINVAL;
  		goto out;
  	}

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

* [PATCH] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error
  2013-11-27  0:49 [PATCH] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error Paul Walmsley
@ 2013-11-27  1:32 ` Laurent Pinchart
  2013-11-28  7:43 ` Simon Horman
  1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2013-11-27  1:32 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Paul,

Thank you for the patch.

On Tuesday 26 November 2013 16:49:38 Paul Walmsley wrote:
> Treat both negative and zero return values from clk_round_rate() as
> errors.  This is needed since subsequent patches will convert
> clk_round_rate()'s return value to be an unsigned type, rather than a
> signed type, since some clock sources can generate rates higher than
> (2^31)-1 Hz.
> 
> Eventually, when calling clk_round_rate(), only a return value of zero
> will be considered a error.  All other values will be considered valid
> rates.  The comparison against values less than 0 is kept to preserve
> the correct behavior in the meantime.
> 
> Signed-off-by: Paul Walmsley <pwalmsley@nvidia.com>
> Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> Cc: Simon Horman <horms@verge.net.au>
> Cc: Magnus Damm <magnus.damm@gmail.com>

Acked-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>

> ---
> Applies on v3.13-rc1.  See also:
> 
>      http://marc.info/?l=linux-arm-kernel&m=138542591313620&w=2
> 
>   arch/arm/mach-shmobile/board-mackerel.c |    4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/mach-shmobile/board-mackerel.c
> b/arch/arm/mach-shmobile/board-mackerel.c index af06753eb809..d90d2f11071b
> 100644
> --- a/arch/arm/mach-shmobile/board-mackerel.c
> +++ b/arch/arm/mach-shmobile/board-mackerel.c
> @@ -548,9 +548,9 @@ static void __init hdmi_init_pm_clock(void)
>   		 clk_get_rate(&sh7372_pllc2_clk));
> 
>   	rate = clk_round_rate(&sh7372_pllc2_clk, 594000000);
> -	if (rate < 0) {
> +	if (rate <= 0) {
>   		pr_err("Cannot get suitable rate: %ld\n", rate);
> -		ret = rate;
> +		ret = -EINVAL;
>   		goto out;
>   	}
-- 
Regards,

Laurent Pinchart

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

* [PATCH] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error
  2013-11-27  0:49 [PATCH] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error Paul Walmsley
  2013-11-27  1:32 ` Laurent Pinchart
@ 2013-11-28  7:43 ` Simon Horman
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2013-11-28  7:43 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 26, 2013 at 04:49:38PM -0800, Paul Walmsley wrote:
> 
> Treat both negative and zero return values from clk_round_rate() as
> errors.  This is needed since subsequent patches will convert
> clk_round_rate()'s return value to be an unsigned type, rather than a
> signed type, since some clock sources can generate rates higher than
> (2^31)-1 Hz.
> 
> Eventually, when calling clk_round_rate(), only a return value of zero
> will be considered a error.  All other values will be considered valid
> rates.  The comparison against values less than 0 is kept to preserve
> the correct behavior in the meantime.
> 
> Signed-off-by: Paul Walmsley <pwalmsley@nvidia.com>
> Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> Cc: Simon Horman <horms@verge.net.au>
> Cc: Magnus Damm <magnus.damm@gmail.com>
> ---
> Applies on v3.13-rc1.  See also:
> 
>     http://marc.info/?l=linux-arm-kernel&m=138542591313620&w=2
> 
>  arch/arm/mach-shmobile/board-mackerel.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Thanks Paul,

I have queued this up.

> 
> diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c
> index af06753eb809..d90d2f11071b 100644
> --- a/arch/arm/mach-shmobile/board-mackerel.c
> +++ b/arch/arm/mach-shmobile/board-mackerel.c
> @@ -548,9 +548,9 @@ static void __init hdmi_init_pm_clock(void)
>  		 clk_get_rate(&sh7372_pllc2_clk));
> 
>  	rate = clk_round_rate(&sh7372_pllc2_clk, 594000000);
> -	if (rate < 0) {
> +	if (rate <= 0) {
>  		pr_err("Cannot get suitable rate: %ld\n", rate);
> -		ret = rate;
> +		ret = -EINVAL;
>  		goto out;
>  	}
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

end of thread, other threads:[~2013-11-28  7:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-27  0:49 [PATCH] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error Paul Walmsley
2013-11-27  1:32 ` Laurent Pinchart
2013-11-28  7:43 ` Simon Horman

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).