brintos

brintos / linux-shallow public Read only

0
0
Text · 524 B · 2e99991 Raw
27 lines · c
1/* SPDX-License-Identifier: GPL-2.02 *3 * ASoC simple sound card support4 *5 * Copyright (C) 2012 Renesas Solutions Corp.6 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>7 */8 9#ifndef __SIMPLE_CARD_H10#define __SIMPLE_CARD_H11 12#include <sound/soc.h>13#include <sound/simple_card_utils.h>14 15struct simple_util_info {16	const char *name;17	const char *card;18	const char *codec;19	const char *platform;20 21	unsigned int daifmt;22	struct simple_util_dai cpu_dai;23	struct simple_util_dai codec_dai;24};25 26#endif /* __SIMPLE_CARD_H */27