mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
17 lines
315 B
C
17 lines
315 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 graph_card_probe(struct snd_soc_card *card);
|
||
|
|
||
|
int graph_parse_of(struct asoc_simple_priv *priv, struct device *dev);
|
||
|
|
||
|
#endif /* __GRAPH_CARD_H */
|