mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
f6fcc820e0
audio-graph-card2 can reuse audio_graph_remove() / asoc_simple_remove(). This patch moves it to simple-card-utils.c. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/87y2df3uby.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
15 lines
271 B
C
15 lines
271 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* ASoC audio graph card support
|
|
*
|
|
*/
|
|
|
|
#ifndef __GRAPH_CARD_H
|
|
#define __GRAPH_CARD_H
|
|
|
|
#include <sound/simple_card_utils.h>
|
|
|
|
int audio_graph_parse_of(struct asoc_simple_priv *priv, struct device *dev);
|
|
|
|
#endif /* __GRAPH_CARD_H */
|