diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-17 14:30:42 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 12:18:21 +0100 |
commit | ba2375a45c528fd902676ea01014ea0f8931464b (patch) | |
tree | e38833035449d0d65afb3cfc1104b243ce88454c /sound/isa/cs423x/cs4231.c | |
parent | c8ff6647bb8a1865608b2d0c8565ca0ac47fb9b7 (diff) |
[ALSA] Remove xxx_t typedefs: ISA CS423x
Modules: CS4231 driver,CS4236+ driver
Remove xxx_t typedefs from the ISA CS423x drivers.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/cs423x/cs4231.c')
-rw-r--r-- | sound/isa/cs423x/cs4231.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/isa/cs423x/cs4231.c b/sound/isa/cs423x/cs4231.c index 9be5416bcb9..a8da87903d9 100644 --- a/sound/isa/cs423x/cs4231.c +++ b/sound/isa/cs423x/cs4231.c @@ -64,15 +64,15 @@ MODULE_PARM_DESC(dma1, "DMA1 # for CS4231 driver."); module_param_array(dma2, int, NULL, 0444); MODULE_PARM_DESC(dma2, "DMA2 # for CS4231 driver."); -static snd_card_t *snd_cs4231_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; +static struct snd_card *snd_cs4231_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; static int __init snd_card_cs4231_probe(int dev) { - snd_card_t *card; + struct snd_card *card; struct snd_card_cs4231 *acard; - snd_pcm_t *pcm = NULL; - cs4231_t *chip; + struct snd_pcm *pcm = NULL; + struct snd_cs4231 *chip; int err; if (port[dev] == SNDRV_AUTO_PORT) { |