Lines Matching refs:_name
42 #define DEFINE_STRUCT_CLK(_name, _parent_array_name, _clkops_name) \ argument
43 static struct clk_core _name##_core = { \
44 .name = #_name, \
45 .hw = &_name##_hw.hw, \
50 static struct clk _name = { \
51 .core = &_name##_core, \
54 #define DEFINE_STRUCT_CLK_FLAGS(_name, _parent_array_name, \ argument
56 static struct clk_core _name##_core = { \
57 .name = #_name, \
58 .hw = &_name##_hw.hw, \
64 static struct clk _name = { \
65 .core = &_name##_core, \
68 #define DEFINE_STRUCT_CLK_HW_OMAP(_name, _clkdm_name) \ argument
69 static struct clk_hw_omap _name##_hw = { \
71 .clk = &_name, \
76 #define DEFINE_CLK_OMAP_MUX(_name, _clkdm_name, _clksel, \ argument
79 static struct clk _name; \
80 static struct clk_hw_omap _name##_hw = { \
82 .clk = &_name, \
89 DEFINE_STRUCT_CLK(_name, _parent_names, _ops);
91 #define DEFINE_CLK_OMAP_MUX_GATE(_name, _clkdm_name, _clksel, \ argument
95 static struct clk _name; \
96 static struct clk_hw_omap _name##_hw = { \
98 .clk = &_name, \
108 DEFINE_STRUCT_CLK(_name, _parent_names, _ops);