diff options
author | Anson Huang <b20788@freescale.com> | 2016-06-08 22:33:32 +0800 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2016-06-12 19:26:01 +0800 |
commit | 7e797d9fc8bd8cf0fb1276b1ae78b6542afe48d7 (patch) | |
tree | 8ddea5215ff945d9924f21293c491b723a0cd4ca /drivers/clk/imx | |
parent | ba7f4f557eb67ee21c979c8539dc1886f5d5341c (diff) |
clk: imx7d: correct dram root clk parent select
DRAM root clk should be either from pll dram main clk
or dram alt root clk.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/clk/imx')
-rw-r--r-- | drivers/clk/imx/clk-imx7d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk-imx7d.c b/drivers/clk/imx/clk-imx7d.c index 522996800d5b..6545e07bdd38 100644 --- a/drivers/clk/imx/clk-imx7d.c +++ b/drivers/clk/imx/clk-imx7d.c @@ -65,7 +65,7 @@ static const char *dram_phym_sel[] = { "pll_dram_main_clk", "dram_phym_alt_clk", }; static const char *dram_sel[] = { "pll_dram_main_clk", - "dram_alt_clk", }; + "dram_alt_root_clk", }; static const char *dram_phym_alt_sel[] = { "osc", "pll_dram_533m_clk", "pll_sys_main_clk", "pll_enet_500m_clk", |