diff options
Diffstat (limited to 'include/asm-arm/arch-pxa/audio.h')
-rw-r--r-- | include/asm-arm/arch-pxa/audio.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/asm-arm/arch-pxa/audio.h b/include/asm-arm/arch-pxa/audio.h new file mode 100644 index 000000000000..60976f830e3f --- /dev/null +++ b/include/asm-arm/arch-pxa/audio.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef __ASM_ARCH_AUDIO_H__ | ||
2 | #define __ASM_ARCH_AUDIO_H__ | ||
3 | |||
4 | #include <sound/driver.h> | ||
5 | #include <sound/core.h> | ||
6 | #include <sound/pcm.h> | ||
7 | |||
8 | typedef struct { | ||
9 | int (*startup)(snd_pcm_substream_t *, void *); | ||
10 | void (*shutdown)(snd_pcm_substream_t *, void *); | ||
11 | void (*suspend)(void *); | ||
12 | void (*resume)(void *); | ||
13 | void *priv; | ||
14 | } pxa2xx_audio_ops_t; | ||
15 | |||
16 | #endif | ||