diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2012-03-19 15:36:10 +0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2012-05-02 14:07:59 +0400 |
commit | a547b816a879b235ae0f90ae32d74effbb20d6d1 (patch) | |
tree | 2a8bc4fc235b42b4ec139cbdfd273a51b8161549 /arch/arm/mach-imx/clk.h | |
parent | 2af9e6db14db9a7a0a6510227352fb2e69f9d032 (diff) | |
download | linux-a547b816a879b235ae0f90ae32d74effbb20d6d1.tar.xz |
ARM i.MX: Add common clock support for pllv2
This PLL is found on i.MX51 and i.MX53
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx/clk.h')
-rw-r--r-- | arch/arm/mach-imx/clk.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/clk.h b/arch/arm/mach-imx/clk.h index 8a4aee61866a..7f5da75f30b3 100644 --- a/arch/arm/mach-imx/clk.h +++ b/arch/arm/mach-imx/clk.h @@ -8,6 +8,9 @@ struct clk *imx_clk_pllv1(const char *name, const char *parent, void __iomem *base); +struct clk *imx_clk_pllv2(const char *name, const char *parent, + void __iomem *base); + static inline struct clk *imx_clk_fixed(const char *name, int rate) { return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate); |