/* * ASoC simple sound card support * * Copyright (C) 2012 Renesas Solutions Corp. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#ifndef __SIMPLE_CARD_H#define __SIMPLE_CARD_H#include <sound/soc.h>structasoc_simple_dai{constchar*name;unsignedintfmt;unsignedintsysclk;};structasoc_simple_card_info{constchar*name;constchar*card;constchar*codec;constchar*platform;unsignedintdaifmt;structasoc_simple_daicpu_dai;structasoc_simple_daicodec_dai;/* used in simple-card.c */structsnd_soc_dai_linksnd_link;structsnd_soc_cardsnd_card;};#endif /* __SIMPLE_CARD_H */