[PATCH v2 14/28] i.MX: clk: Port imx_clk_mux_flags from Linux
Andrey Smirnov
andrew.smirnov at gmail.com
Wed Nov 9 08:14:02 PST 2016
Port imx_clk_mux_flags from Linux, to simplify clock code porting.
Signed-off-by: Andrey Smirnov <andrew.smirnov at gmail.com>
---
drivers/clk/imx/clk.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h
index fd43fc2..970f65c 100644
--- a/drivers/clk/imx/clk.h
+++ b/drivers/clk/imx/clk.h
@@ -30,6 +30,14 @@ static inline struct clk *imx_clk_fixed_factor(const char *name,
return clk_fixed_factor(name, parent, mult, div, CLK_SET_RATE_PARENT);
}
+static inline struct clk *imx_clk_mux_flags(const char *name, void __iomem *reg,
+ u8 shift, u8 width,
+ const char **parents, u8 num_parents,
+ unsigned long flags)
+{
+ return clk_mux(name, reg, shift, width, parents, num_parents, flags);
+}
+
static inline struct clk *imx_clk_mux(const char *name, void __iomem *reg,
u8 shift, u8 width, const char **parents, u8 num_parents)
{
--
2.5.5
More information about the barebox
mailing list