Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2menu "Generic drivers"
3
4config SND_SIMPLE_CARD_UTILS
5 tristate
6
7config SND_SIMPLE_CARD
8 tristate "ASoC Simple sound card support"
9 select SND_SIMPLE_CARD_UTILS
10 help
11 This option enables generic simple sound card support
12 It also support DPCM of multi CPU single Codec ststem.
13
14config SND_AUDIO_GRAPH_CARD
15 tristate "ASoC Audio Graph sound card support"
16 depends on OF
17 select SND_SIMPLE_CARD_UTILS
18 help
19 This option enables generic simple sound card support
20 with OF-graph DT bindings.
21 It also support DPCM of multi CPU single Codec ststem.
22
23config SND_AUDIO_GRAPH_CARD2
24 tristate "ASoC Audio Graph sound card2 support"
25 depends on OF
26 select SND_SIMPLE_CARD_UTILS
27 help
28 This option enables generic simple sound card2 support
29 with OF-graph DT bindings.
30
31config SND_AUDIO_GRAPH_CARD2_CUSTOM_SAMPLE
32 tristate "ASoC Audio Graph Card2 base custom sample support"
33 depends on SND_AUDIO_GRAPH_CARD2
34 help
35 This option enables Audio Graph Card2 base custom sample
36
37config SND_TEST_COMPONENT
38 tristate "ASoC Test component sound support"
39 depends on OF
40 help
41 This option enables test component sound driver support.
42
43endmenu