ccu_mult.h 214 B

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