#ifndef VLAN_H #define VLAN_H #include #include static inline uint16_t vlan_tci2prio(uint16_t tci) { return (tci & 0xe000) >> 13; } static inline uint16_t vlan_tci2cfi(uint16_t tci) { return (tci & 0x1000) >> 12; } static inline uint16_t vlan_tci2vid(uint16_t tci) { return tci & 0x0fff; } #endif .ch/cgit.cgi/linux/net-next.git/atom/Documentation/devicetree/bindings?h=master' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWonjoon Lee <woojoo.lee@samsung.com>2016-09-22 21:50:06 +0800
committerMark Brown <broonie@kernel.org>2016-09-24 19:11:04 +0100
commit3a6f9dce6116cc54e31dc10d176ceecb1a7e4e7f (patch)
tree71a83c9811efd80d118c0d1457a056465ce67e12 /Documentation/devicetree/bindings
parent22b93eaf55edfd2f1fe9d1fc0d7338f582f12745 (diff)
ASoC: rk3399_gru_sound: fix recording pop at first attempt
Pop happens when mclk applied but dmic's own boot-time Specify dmic delay times in dt to make sure clocks are ready earlier than dmic working Signed-off-by: Wonjoon Lee <woojoo.lee@samsung.com> Signed-off-by: Xing Zheng <zhengxing@rock-chips.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings')