diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2013-03-11 10:44:40 +0800 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-03-11 10:44:40 +0800 |
commit | 395816623d4f99b77fd53d6a537906ce25a08768 (patch) | |
tree | d96dd5de3c66cae0b86d893bdb0dd72cb64c8546 /arch | |
parent | 0545c798e9bb7fe29606681653c20d68e47f4840 (diff) | |
download | linux-395816623d4f99b77fd53d6a537906ce25a08768.tar.bz2 |
ARM: imx: pll1_sys should be an initial on clk
We always boot from PLL1, so let's have pll1_sys in the clks_init_on
list to have clk prepare/enable use count match the hardware status,
so that drivers managing pll1_sys like cpufreq can get the use count
right from the start.
Reported-by: Dirk Behme <dirk.behme@de.bosch.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-imx/clk-imx6q.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c index 7b025ee528a5..2f9ff93a4e61 100644 --- a/arch/arm/mach-imx/clk-imx6q.c +++ b/arch/arm/mach-imx/clk-imx6q.c @@ -172,7 +172,7 @@ static struct clk *clk[clk_max]; static struct clk_onecell_data clk_data; static enum mx6q_clks const clks_init_on[] __initconst = { - mmdc_ch0_axi, rom, + mmdc_ch0_axi, rom, pll1_sys, }; static struct clk_div_table clk_enet_ref_table[] = { |