diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2012-11-22 04:18:41 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2012-11-22 09:32:39 -0500 |
commit | 2b254693bef4f1299de0afb231890fe348df11c6 (patch) | |
tree | 33faef980ce73948ec96f32c9f4ae9c4ba5d9a12 /arch/arm/mach-imx/clk.h | |
parent | 7a04092c733fd72ded1294719046cfdb31feced3 (diff) |
ARM i.MX6: remove gate_mask from pllv3
Now that the additional enable bits in the enet PLL are handled
as gates, the gate_mask is identical for all plls. Remove the
gate_mask from the code and use the BM_PLL_ENABLE bit for
enabling/disabling the PLL.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx/clk.h')
-rw-r--r-- | arch/arm/mach-imx/clk.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/clk.h b/arch/arm/mach-imx/clk.h index 5f2d8acca25f..9d1f3b99d1d3 100644 --- a/arch/arm/mach-imx/clk.h +++ b/arch/arm/mach-imx/clk.h | |||
@@ -22,8 +22,7 @@ enum imx_pllv3_type { | |||
22 | }; | 22 | }; |
23 | 23 | ||
24 | struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name, | 24 | struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name, |
25 | const char *parent_name, void __iomem *base, u32 gate_mask, | 25 | const char *parent_name, void __iomem *base, u32 div_mask); |
26 | u32 div_mask); | ||
27 | 26 | ||
28 | struct clk *clk_register_gate2(struct device *dev, const char *name, | 27 | struct clk *clk_register_gate2(struct device *dev, const char *name, |
29 | const char *parent_name, unsigned long flags, | 28 | const char *parent_name, unsigned long flags, |