audio.h 383 B

1234567891011121314151617
  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. extern void pxa_set_ac97_info(pxa2xx_audio_ops_t *ops);
  13. #endif