mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
16 lines
214 B
C
16 lines
214 B
C
![]() |
#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_ */
|