aboutsummaryrefslogtreecommitdiff
path: root/sound/soc/at91/at91-pcm.h
diff options
context:
space:
mode:
authorFrank Mandarino <fmandarino@endrelia.com>2007-02-02 17:19:24 +0100
committerJaroslav Kysela <perex@suse.cz>2007-02-09 09:03:44 +0100
commit6297027629a9349301e08442b67deb9783a5e984 (patch)
treede1d9282e225c9d835a21d2bf4f34598fe9aaf71 /sound/soc/at91/at91-pcm.h
parent171eb8f81d7b0706c1085d272e4955251ed9f05f (diff)
[ALSA] soc - ASoC 0.13 AT91xxxx DMA
This patch updates the AT91xxxx audio DMA driver to the new API in ASoC 0.13. Changes:- o Updated to use new 0.13 data structures. o Suspend and Resume now conditionally compiled. o #include guard around at91-pcm.h header. Signed-off-by: Frank Mandarino <fmandarino@endrelia.com> Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/soc/at91/at91-pcm.h')
-rw-r--r--sound/soc/at91/at91-pcm.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/sound/soc/at91/at91-pcm.h b/sound/soc/at91/at91-pcm.h
index 6c3b095725c..58d0f00a07b 100644
--- a/sound/soc/at91/at91-pcm.h
+++ b/sound/soc/at91/at91-pcm.h
@@ -16,6 +16,9 @@
* published by the Free Software Foundation.
*/
+#ifndef _AT91_PCM_H
+#define _AT91_PCM_H
+
#include <asm/arch/hardware.h>
struct at91_ssc_periph {
@@ -23,7 +26,6 @@ struct at91_ssc_periph {
u32 pid;
};
-
/*
* Registers and status bits that are required by the PCM driver.
*/
@@ -44,7 +46,6 @@ struct at91_ssc_mask {
u32 pdc_disable; /* PDC recv/trans disable */
};
-
/*
* This structure, shared between the PCM driver and the interface,
* contains all information required by the PCM driver to perform the
@@ -63,9 +64,9 @@ struct at91_pcm_dma_params {
void (*dma_intr_handler)(u32, struct snd_pcm_substream *);
};
-extern struct snd_soc_cpu_dai at91_i2s_dai[3];
extern struct snd_soc_platform at91_soc_platform;
-
#define at91_ssc_read(a) ((unsigned long) __raw_readl(a))
#define at91_ssc_write(a,v) __raw_writel((v),(a))
+
+#endif /* _AT91_PCM_H */