diff options
author | Russell King - ARM Linux <linux@armlinux.org.uk> | 2016-09-19 21:12:12 +0200 |
---|---|---|
committer | Robert Jarzmik <robert.jarzmik@free.fr> | 2016-10-18 09:12:36 +0200 |
commit | a758c9b93f5c4e826b3c0849c96c630b1cce8f8d (patch) | |
tree | b4664999b38594ddb03852be96ae916c5199e434 /drivers/clk | |
parent | 1001354ca34179f3db924eb66672442a173147dc (diff) | |
download | linux-a758c9b93f5c4e826b3c0849c96c630b1cce8f8d.tar.gz linux-a758c9b93f5c4e826b3c0849c96c630b1cce8f8d.tar.bz2 linux-a758c9b93f5c4e826b3c0849c96c630b1cce8f8d.zip |
clk: pxa25x: OSTIMER0 clocks from the main oscillator
The OSTIMER0 clock ticks at the main oscillator rate, not the 32kHz
oscillator rate. Ensure that it is parented to the main oscillator.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
Tested-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/pxa/clk-pxa25x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/pxa/clk-pxa25x.c b/drivers/clk/pxa/clk-pxa25x.c index a98b98e2a9e4..56b0a6027e38 100644 --- a/drivers/clk/pxa/clk-pxa25x.c +++ b/drivers/clk/pxa/clk-pxa25x.c @@ -230,7 +230,7 @@ static struct dummy_clk dummy_clks[] __initdata = { DUMMY_CLK("GPIO11_CLK", NULL, "osc_3_6864mhz"), DUMMY_CLK("GPIO12_CLK", NULL, "osc_32_768khz"), DUMMY_CLK(NULL, "sa1100-rtc", "osc_32_768khz"), - DUMMY_CLK("OSTIMER0", NULL, "osc_32_768khz"), + DUMMY_CLK("OSTIMER0", NULL, "osc_3_6864mhz"), DUMMY_CLK("UARTCLK", "pxa2xx-ir", "STUART"), }; |