clk: tegra: Use definition for pll_u override bit
authorJon Hunter <jonathanh@nvidia.com>
Mon, 21 Dec 2015 12:56:32 +0000 (12:56 +0000)
committerThierry Reding <treding@nvidia.com>
Tue, 2 Feb 2016 14:49:31 +0000 (15:49 +0100)
The definition, PLLU_BASE_OVERRIDE, for the pll_u OVERRIDE bit is defined
but not used and when the OVERRIDE bit is cleared in tegra210_pll_init()
the code directly uses the bit number. Therefore, use the definition,
PLLU_BASE_OVERRIDE when clearing the OVERRIDE bit.

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Acked-by: Rhyland Klein <rklein@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/clk/tegra/clk-tegra210.c

index 1948ea4f77ff982ab3eec76b91061b6b7be7060b..ca04c2d85e2b7ccc83e18a7e75c00bffce6bb739 100644 (file)
@@ -2507,7 +2507,7 @@ static void __init tegra210_pll_init(void __iomem *clk_base,
 
        /* PLLU_VCO */
        val = readl(clk_base + pll_u_vco_params.base_reg);
-       val &= ~BIT(24); /* disable PLLU_OVERRIDE */
+       val &= ~PLLU_BASE_OVERRIDE; /* disable PLLU_OVERRIDE */
        writel(val, clk_base + pll_u_vco_params.base_reg);
 
        clk = tegra_clk_register_pllre("pll_u_vco", "pll_ref", clk_base, pmc,
This page took 0.025497 seconds and 5 git commands to generate.