1 #ifndef _CCU_MULT_H_ 2 #define _CCU_MULT_H_ 3 4 struct _ccu_mult { 5 u8 shift; 6 u8 width; 7 }; 8 9 #define _SUNXI_CCU_MULT(_shift, _width) \ 10 { \ 11 .shift = _shift, \ 12 .width = _width, \ 13 } 14 15 #endif /* _CCU_MULT_H_ */ 16