Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: fa8410b355251fd30341662a40ac6b22d3e38468 authored by Linus Torvalds on 21 August 2016, 23:14:10 UTC
Linux 4.8-rc3
Tip revision: fa8410b
ccu_mult.h
#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_ */
back to top