audio.h 352 B

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