[PATCH 2/2] clk: fixup argument order when setting VCO parameters
Mike Turquette
mturquette at linaro.org
Wed Jul 24 19:26:00 EDT 2013
Quoting Jonathan Austin (2013-07-23 08:42:18)
> The order of arguments in the call to vco_set() for the ICST clocks appears to
> have been switched in error, which results in the VCO not being initialised
> correctly. This in turn stops the integrated LCD on things like Integrator/CP
> from working correctly.
>
> This patch fixes the order and restores the expected functionality.
>
> Cc: Linus Walleij <linus.walleij at linaro.org>
> Cc: Mike Turquette <mturquette at linaro.org>
> Signed-off-by: Jonathan Austin <jonathan.austin at arm.com>
Thanks for the fix. Will send out with the next batch.
Regards,
Mike
> ---
> drivers/clk/versatile/clk-icst.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/clk/versatile/clk-icst.c b/drivers/clk/versatile/clk-icst.c
> index 67ccf4a..f5e4c21 100644
> --- a/drivers/clk/versatile/clk-icst.c
> +++ b/drivers/clk/versatile/clk-icst.c
> @@ -107,7 +107,7 @@ static int icst_set_rate(struct clk_hw *hw, unsigned long rate,
>
> vco = icst_hz_to_vco(icst->params, rate);
> icst->rate = icst_hz(icst->params, vco);
> - vco_set(icst->vcoreg, icst->lockreg, vco);
> + vco_set(icst->lockreg, icst->vcoreg, vco);
> return 0;
> }
>
> --
> 1.7.9.5
More information about the linux-arm-kernel
mailing list