Lines Matching refs:name
26 struct clk *mxs_clk_pll(const char *name, const char *parent_name,
29 struct clk *mxs_clk_ref(const char *name, const char *parent_name,
32 struct clk *mxs_clk_div(const char *name, const char *parent_name,
35 struct clk *mxs_clk_frac(const char *name, const char *parent_name,
38 static inline struct clk *mxs_clk_fixed(const char *name, int rate) in mxs_clk_fixed() argument
40 return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate); in mxs_clk_fixed()
43 static inline struct clk *mxs_clk_gate(const char *name, in mxs_clk_gate() argument
46 return clk_register_gate(NULL, name, parent_name, CLK_SET_RATE_PARENT, in mxs_clk_gate()
51 static inline struct clk *mxs_clk_mux(const char *name, void __iomem *reg, in mxs_clk_mux() argument
54 return clk_register_mux(NULL, name, parent_names, num_parents, in mxs_clk_mux()
59 static inline struct clk *mxs_clk_fixed_factor(const char *name, in mxs_clk_fixed_factor() argument
62 return clk_register_fixed_factor(NULL, name, parent_name, in mxs_clk_fixed_factor()