2005-04-17 00:20:36 +02:00
|
|
|
#ifndef __ASM_ARCH_AUDIO_H__
|
|
|
|
#define __ASM_ARCH_AUDIO_H__
|
|
|
|
|
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/pcm.h>
|
|
|
|
|
|
|
|
typedef struct {
|
2006-01-13 18:48:06 +01:00
|
|
|
int (*startup)(struct snd_pcm_substream *, void *);
|
|
|
|
void (*shutdown)(struct snd_pcm_substream *, void *);
|
2005-04-17 00:20:36 +02:00
|
|
|
void (*suspend)(void *);
|
|
|
|
void (*resume)(void *);
|
|
|
|
void *priv;
|
|
|
|
} pxa2xx_audio_ops_t;
|
|
|
|
|
|
|
|
#endif
|