Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-arm / arch-pxa / audio.h
blob52bbe3bc25e1e5f283cc2d2d56603e06a127f4b1
1 #ifndef __ASM_ARCH_AUDIO_H__
2 #define __ASM_ARCH_AUDIO_H__
4 #include <sound/core.h>
5 #include <sound/pcm.h>
7 typedef struct {
8 int (*startup)(struct snd_pcm_substream *, void *);
9 void (*shutdown)(struct snd_pcm_substream *, void *);
10 void (*suspend)(void *);
11 void (*resume)(void *);
12 void *priv;
13 } pxa2xx_audio_ops_t;
15 #endif