forked from Minki/linux
6e4ea8aace
Following functions are renamed for a better global visibility. graph_card_probe() --> audio_graph_card_probe() graph_parse_of() --> audio_graph_parse_of() graph_remove() --> audio_graph_remove() [exported as well] The references of these are updated in audio graph and Tegra audio graph card drivers. Signed-off-by: Sameer Pujar <spujar@nvidia.com> Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/1612719418-5858-2-git-send-email-spujar@nvidia.com Signed-off-by: Mark Brown <broonie@kernel.org>
19 lines
382 B
C
19 lines
382 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_card_probe(struct snd_soc_card *card);
|
|
|
|
int audio_graph_parse_of(struct asoc_simple_priv *priv, struct device *dev);
|
|
|
|
int audio_graph_remove(struct platform_device *pdev);
|
|
|
|
#endif /* __GRAPH_CARD_H */
|