From mboxrd@z Thu Jan 1 00:00:00 1970 From: laurent.pinchart@ideasonboard.com (Laurent Pinchart) Date: Wed, 27 Nov 2013 02:32:24 +0100 Subject: [PATCH] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error In-Reply-To: References: Message-ID: <2330816.mMAIUNnmhK@avalon> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org 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 > Cc: Laurent Pinchart > Cc: Simon Horman > Cc: Magnus Damm Acked-by: Laurent Pinchart > --- > 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