forked from Minki/linux
da215354eb
simple-card and simple-scu-card are very similar driver, but the former is supporting normal sound card, the latter is supporting DPCM sound card. We couldn't use normal sound and DPCM sound in same time by one sound card. This patch merges both sound card into simple-card. Now we can use both feature on same driver. simple-card is now supporting .compatible = "simple-scu-audio-card". Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
config SND_SIMPLE_CARD_UTILS
|
|
tristate
|
|
|
|
config SND_SIMPLE_CARD
|
|
tristate "ASoC Simple sound card support"
|
|
select SND_SIMPLE_CARD_UTILS
|
|
help
|
|
This option enables generic simple sound card support
|
|
It also support DPCM of multi CPU single Codec ststem.
|
|
|
|
config SND_SIMPLE_SCU_CARD
|
|
tristate "ASoC Simple SCU sound card support"
|
|
depends on OF
|
|
select SND_SIMPLE_CARD_UTILS
|
|
help
|
|
This option enables generic simple SCU sound card support.
|
|
It supports DPCM of multi CPU single Codec system.
|
|
|
|
config SND_AUDIO_GRAPH_CARD
|
|
tristate "ASoC Audio Graph sound card support"
|
|
depends on OF
|
|
select SND_SIMPLE_CARD_UTILS
|
|
help
|
|
This option enables generic simple sound card support
|
|
with OF-graph DT bindings.
|
|
It also support DPCM of multi CPU single Codec ststem.
|
|
|
|
config SND_AUDIO_GRAPH_SCU_CARD
|
|
tristate "ASoC Audio Graph SCU sound card support"
|
|
depends on OF
|
|
select SND_SIMPLE_CARD_UTILS
|
|
help
|
|
This option enables generic simple SCU sound card support
|
|
with OF-graph DT bindings.
|
|
It supports DPCM of multi CPU single Codec ststem.
|