mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 05:36:53 +07:00
1d80c14248
Start our new clock infrastructure by adding the registration code, common structure and common code. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Michael Turquette <mturquette@baylibre.com> Link: lkml.kernel.org/r/20160629190535.11855-3-maxime.ripard@free-electrons.com
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_ */
|