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