|
@@ -21,7 +21,7 @@ struct ccu_mux_internal {
|
|
|
} variable_prediv;
|
|
|
};
|
|
|
|
|
|
-#define SUNXI_CLK_MUX(_shift, _width) \
|
|
|
+#define _SUNXI_CCU_MUX(_shift, _width) \
|
|
|
{ \
|
|
|
.shift = _shift, \
|
|
|
.width = _width, \
|
|
@@ -37,7 +37,7 @@ struct ccu_mux {
|
|
|
|
|
|
#define SUNXI_CCU_MUX(_struct, _name, _parents, _reg, _shift, _width, _flags) \
|
|
|
struct ccu_mux _struct = { \
|
|
|
- .mux = SUNXI_CLK_MUX(_shift, _width), \
|
|
|
+ .mux = _SUNXI_CCU_MUX(_shift, _width), \
|
|
|
.common = { \
|
|
|
.reg = _reg, \
|
|
|
.hw.init = CLK_HW_INIT_PARENTS(_name, \
|
|
@@ -51,7 +51,7 @@ struct ccu_mux {
|
|
|
_shift, _width, _gate, _flags) \
|
|
|
struct ccu_mux _struct = { \
|
|
|
.enable = _gate, \
|
|
|
- .mux = SUNXI_CLK_MUX(_shift, _width), \
|
|
|
+ .mux = _SUNXI_CCU_MUX(_shift, _width), \
|
|
|
.common = { \
|
|
|
.reg = _reg, \
|
|
|
.hw.init = CLK_HW_INIT_PARENTS(_name, \
|