1 /* SPDX-License-Identifier: GPL-2.0 2 * 3 * ASoC audio graph card support 4 * 5 */ 6 7 #ifndef __GRAPH_CARD_H 8 #define __GRAPH_CARD_H 9 10 #include <sound/simple_card_utils.h> 11 12 int graph_card_probe(struct snd_soc_card *card); 13 14 int graph_parse_of(struct asoc_simple_priv *priv, struct device *dev); 15 16 #endif /* __GRAPH_CARD_H */ 17