usb: renesas_usbhs: add support for USB-DMAC
[linux-2.6/btrfs-unstable.git] / include / sound / simple_card.h
blob1255ddb1d3e2c22d05b188a82bc589f62c307b9b
1 /*
2 * ASoC simple sound card support
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #ifndef __SIMPLE_CARD_H
13 #define __SIMPLE_CARD_H
15 #include <sound/soc.h>
17 struct asoc_simple_dai {
18 const char *name;
19 unsigned int fmt;
20 unsigned int sysclk;
21 int slots;
22 int slot_width;
23 struct clk *clk;
26 struct asoc_simple_card_info {
27 const char *name;
28 const char *card;
29 const char *codec;
30 const char *platform;
32 unsigned int daifmt;
33 struct asoc_simple_dai cpu_dai;
34 struct asoc_simple_dai codec_dai;
37 #endif /* __SIMPLE_CARD_H */