/* * netsniff-ng - the packet sniffing beast * Copyright 2012 Markus Amend , Deutsche Flugsicherung GmbH * Subject to the GPL, version 2. * * IPv6 in IPv4 encapsulation described in RFC3056 */ #include #include #include /* for ntohs() */ #include "proto.h" #include "protos.h" #include "dissector_eth.h" #include "built_in.h" extern void ipv6(struct pkt_buff *pkt); extern void ipv6_less(struct pkt_buff *pkt); struct protocol ipv6_in_ipv4_ops = { .key = 0x29, .print_full = ipv6, .print_less = ipv6_less, };
summaryrefslogtreecommitdiff
path: root/sound/soc
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 /sound/soc
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 'sound/soc')