summaryrefslogtreecommitdiff
path: root/protos.h
blob: 201439a29c5b1ebf4f91afd3b47d428ecda6fe2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef PROTOS_H
#define PROTOS_H

struct protocol;

extern struct protocol arp_ops;
extern struct protocol ethernet_ops;
extern struct protocol icmpv4_ops;
extern struct protocol icmpv6_ops;
extern struct protocol igmp_ops;
extern struct protocol ip_auth_ops;
extern struct protocol ip_esp_ops;
extern struct protocol ipv4_ops;
extern struct protocol ipv6_ops;
extern struct protocol ipv6_dest_opts_ops;
extern struct protocol ipv6_fragm_ops;
extern struct protocol ipv6_hop_by_hop_ops;
extern struct protocol ipv6_in_ipv4_ops;
extern struct protocol ipv6_mobility_ops;
extern struct protocol ipv6_no_next_header_ops;
extern struct protocol ipv6_routing_ops;
extern struct protocol lldp_ops;
extern struct protocol none_ops;
extern struct protocol tcp_ops;
extern struct protocol udp_ops;
extern struct protocol vlan_ops;
extern struct protocol ieee80211_ops;
extern struct protocol QinQ_ops;
extern struct protocol mpls_uc_ops;
extern struct protocol nlmsg_ops;

#endif /* PROTOS_H */
a0d5caeaebfd00853efa0080afc850e10be7b39a'>a0d5caeaebfd00853efa0080afc850e10be7b39a (diff)
ASoC: da7213: Add checking of SRM lock status before enabling DAI
When the codec is DAI clk slave, and the SRM feature of the PLL is being used, the enabling of the DAI should occur only after the PLL has locked to the incoming WCLK. This update adds checking to the the DAI widget event, so it waits for SRM to lock. There is also a timeout if that lock doesn't occur within a given time. Signed-off-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat
-rw-r--r--sound/soc/codecs/da7213.c23
-rw-r--r--sound/soc/codecs/da7213.h4
2 files changed, 27 insertions, 0 deletions
diff --git a/sound/soc/codecs/da7213.c b/sound/soc/codecs/da7213.ct' class='diffstat'>