mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 20:21:57 +00:00
clk: tegra: Fix enabling of PLLE
When enabling the PLLE as its final step, clk_plle_enable() would accidentally OR in the value previously written to the PLLE_SS_CTRL register. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
c61e4e75b9
commit
4ccc402ece
@ -757,7 +757,7 @@ static int clk_plle_enable(struct clk_hw *hw)
|
||||
val |= PLLE_SS_DISABLE;
|
||||
writel(val, pll->clk_base + PLLE_SS_CTRL);
|
||||
|
||||
val |= pll_readl_base(pll);
|
||||
val = pll_readl_base(pll);
|
||||
val |= (PLL_BASE_BYPASS | PLL_BASE_ENABLE);
|
||||
pll_writel_base(val, pll);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user