diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-01-13 18:48:06 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 10:23:39 +0100 |
commit | f7cbb7fcd3bae5264a079e06411b35366da9bd4d (patch) | |
tree | cc6c46c6e68f2c13da665ad30c9e1dd370dcb7cf /include | |
parent | 97c67b65cbdfd19887450ae1b80ddbb54de9559d (diff) | |
download | linux-3.10-f7cbb7fcd3bae5264a079e06411b35366da9bd4d.tar.gz linux-3.10-f7cbb7fcd3bae5264a079e06411b35366da9bd4d.tar.bz2 linux-3.10-f7cbb7fcd3bae5264a079e06411b35366da9bd4d.zip |
[ALSA] Fix snd_xxx_t typedefs
Modules: PXA Mainstone driver,CX88 driver,SAA7134 driver
Replace snd_xxx_t typedefs with explicit structs.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-pxa/audio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/arch-pxa/audio.h b/include/asm-arm/arch-pxa/audio.h index 60976f830e3..17eccd72013 100644 --- a/include/asm-arm/arch-pxa/audio.h +++ b/include/asm-arm/arch-pxa/audio.h @@ -6,8 +6,8 @@ #include <sound/pcm.h> typedef struct { - int (*startup)(snd_pcm_substream_t *, void *); - void (*shutdown)(snd_pcm_substream_t *, void *); + int (*startup)(struct snd_pcm_substream *, void *); + void (*shutdown)(struct snd_pcm_substream *, void *); void (*suspend)(void *); void (*resume)(void *); void *priv; |