From: Gabriel Fernandez Date: Tue, 23 Jun 2015 14:09:25 +0000 (+0200) Subject: drivers: clk: st: Fix mux bit-setting for Cortex A9 clocks X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3be6d8ce639d92e60d144fb99dd74a53fe3799bb;p=deliverable%2Flinux.git drivers: clk: st: Fix mux bit-setting for Cortex A9 clocks This patch fixes the mux bit-setting for ClockgenA9. Signed-off-by: Gabriel Fernandez Fixes: 13e6f2da1ddf ("clk: st: STiH407: Support for A9 MUX Clocks") Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/st/clkgen-mux.c b/drivers/clk/st/clkgen-mux.c index bd30f8d4e902..717c4a91a17b 100644 --- a/drivers/clk/st/clkgen-mux.c +++ b/drivers/clk/st/clkgen-mux.c @@ -583,7 +583,7 @@ static struct clkgen_mux_data stih416_a9_mux_data = { }; static struct clkgen_mux_data stih407_a9_mux_data = { .offset = 0x1a4, - .shift = 1, + .shift = 0, .width = 2, };