Lines Matching refs:name
16 #define PARENTS(name) \ argument
17 static const char *const name ## _parents[] __initconst
18 #define MUX_RO_RATE_RO_OPS(name, clk_name) \ argument
19 static struct clk_hw name ## _mux_hw; \
20 static struct clk_hw name ## _rate_hw; \
21 static struct clk_ops name ## _mux_ops = { \
22 .get_parent = name ## _get_parent, \
25 static struct clk_ops name ## _rate_ops = { \
26 .recalc_rate = name ## _get_rate, \
28 static struct clk * __init clk_register_ ## name(void) \
31 name ## _parents, \
32 ARRAY_SIZE(name ## _parents), \
33 &name ## _mux_hw, &name ## _mux_ops, \
34 &name ## _rate_hw, &name ## _rate_ops, \
38 #define RATE_RO_OPS(name, clk_name) \ argument
39 static struct clk_hw name ## _rate_hw; \
40 static struct clk_ops name ## _rate_ops = { \
41 .recalc_rate = name ## _get_rate, \
43 static struct clk * __init clk_register_ ## name(void) \
46 name ## _parents, \
47 ARRAY_SIZE(name ## _parents), \
49 &name ## _rate_hw, &name ## _rate_ops, \
72 const char *name; member
85 { .ckid = CLK_ ## _name, .name = #_name, \
93 #define PXA_CKEN_1RATE(dev_id, con_id, name, parents, cken_reg, \ argument
95 PXA_CKEN(dev_id, con_id, name, parents, 1, 1, 1, 1, \