Lines Matching refs:name
27 struct clk *mxs_clk_pll(const char *name, const char *parent_name,
30 struct clk *mxs_clk_ref(const char *name, const char *parent_name,
33 struct clk *mxs_clk_div(const char *name, const char *parent_name,
36 struct clk *mxs_clk_frac(const char *name, const char *parent_name,
39 static inline struct clk *mxs_clk_fixed(const char *name, int rate) in mxs_clk_fixed() argument
41 return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate); in mxs_clk_fixed()
44 static inline struct clk *mxs_clk_gate(const char *name, in mxs_clk_gate() argument
47 return clk_register_gate(NULL, name, parent_name, CLK_SET_RATE_PARENT, in mxs_clk_gate()
52 static inline struct clk *mxs_clk_mux(const char *name, void __iomem *reg, in mxs_clk_mux() argument
55 return clk_register_mux(NULL, name, parent_names, num_parents, in mxs_clk_mux()
60 static inline struct clk *mxs_clk_fixed_factor(const char *name, in mxs_clk_fixed_factor() argument
63 return clk_register_fixed_factor(NULL, name, parent_name, in mxs_clk_fixed_factor()