mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
95373f36b9
audio-graph-card2 has customizing support. This means user can re-use audio-graph-card2 DT parsing, and possible to expand to own special handling. This patch adds Audio Graph Card2 Customize Sample Driver. It can re-use audio-graph-card2 parsing by calling audio_graph2_parse_of(...), and user can expand each functions by using hooks. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/87v922lu3c.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
15 lines
779 B
Makefile
15 lines
779 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
snd-soc-simple-card-utils-objs := simple-card-utils.o
|
|
snd-soc-simple-card-objs := simple-card.o
|
|
snd-soc-audio-graph-card-objs := audio-graph-card.o
|
|
snd-soc-audio-graph-card2-objs := audio-graph-card2.o
|
|
snd-soc-audio-graph-card2-custom-sample-objs := audio-graph-card2-custom-sample.o
|
|
snd-soc-test-component-objs := test-component.o
|
|
|
|
obj-$(CONFIG_SND_SIMPLE_CARD_UTILS) += snd-soc-simple-card-utils.o
|
|
obj-$(CONFIG_SND_SIMPLE_CARD) += snd-soc-simple-card.o
|
|
obj-$(CONFIG_SND_AUDIO_GRAPH_CARD) += snd-soc-audio-graph-card.o
|
|
obj-$(CONFIG_SND_AUDIO_GRAPH_CARD2) += snd-soc-audio-graph-card2.o
|
|
obj-$(CONFIG_SND_AUDIO_GRAPH_CARD2_CUSTOM_SAMPLE) += snd-soc-audio-graph-card2-custom-sample.o
|
|
obj-$(CONFIG_SND_TEST_COMPONENT) += snd-soc-test-component.o
|