home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / arm / mach-pxa / include / mach / audio.h next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  383 b   |  18 lines

  1. #ifndef __ASM_ARCH_AUDIO_H__
  2. #define __ASM_ARCH_AUDIO_H__
  3.  
  4. #include <sound/core.h>
  5. #include <sound/pcm.h>
  6.  
  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;
  14.  
  15. extern void pxa_set_ac97_info(pxa2xx_audio_ops_t *ops);
  16.  
  17. #endif
  18.