audio.h 326 B

123456789101112131415
  1. #ifndef __ASM_ARCH_AUDIO_H__
  2. #define __ASM_ARCH_AUDIO_H__
  3. #include <sound/core.h>
  4. #include <sound/pcm.h>
  5. typedef struct {
  6. int (*startup)(struct snd_pcm_substream *, void *);
  7. void (*shutdown)(struct snd_pcm_substream *, void *);
  8. void (*suspend)(void *);
  9. void (*resume)(void *);
  10. void *priv;
  11. } pxa2xx_audio_ops_t;
  12. #endif