repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git]
/
drivers
/
clk
/
sunxi-ng
/
ccu_mult.h
blob
609db66108807705395f5692f9b6b81a6f5634bb
1
#ifndef _CCU_MULT_H_
2
#define _CCU_MULT_H_
3
4
struct
_ccu_mult
{
5
u8 shift
;
6
u8 width
;
7
};
8
9
#define _SUNXI_CCU_MULT(_shift, _width) \
10
{ \
11
.shift = _shift, \
12
.width = _width, \
13
}
14
15
#endif
/* _CCU_MULT_H_ */