home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-arm / arch-pxa / audio.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  352 b   |  17 lines

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