diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-17 08:29:37 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:18:19 -0500 |
commit | c8ff6647bb8a1865608b2d0c8565ca0ac47fb9b7 (patch) | |
tree | 49f33f6cfed368bd3f85147cb66b0cddc5bcbf28 /sound/isa/ad1848/ad1848.c | |
parent | cbdd0dd15f06a989c519089bb24023a5bfa66eaf (diff) |
[ALSA] Remove xxx_t typedefs: ISA AD1848
Modules: AD1848 driver
Remove xxx_t typedefs from the ISA AD1848 driver.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/ad1848/ad1848.c')
-rw-r--r-- | sound/isa/ad1848/ad1848.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/isa/ad1848/ad1848.c b/sound/isa/ad1848/ad1848.c index 3ebcc482b07a..ffc373b37a9b 100644 --- a/sound/isa/ad1848/ad1848.c +++ b/sound/isa/ad1848/ad1848.c | |||
@@ -60,14 +60,14 @@ MODULE_PARM_DESC(dma1, "DMA1 # for AD1848 driver."); | |||
60 | module_param_array(thinkpad, bool, NULL, 0444); | 60 | module_param_array(thinkpad, bool, NULL, 0444); |
61 | MODULE_PARM_DESC(thinkpad, "Enable only for the onboard CS4248 of IBM Thinkpad 360/750/755 series."); | 61 | MODULE_PARM_DESC(thinkpad, "Enable only for the onboard CS4248 of IBM Thinkpad 360/750/755 series."); |
62 | 62 | ||
63 | static snd_card_t *snd_ad1848_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; | 63 | static struct snd_card *snd_ad1848_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; |
64 | 64 | ||
65 | 65 | ||
66 | static int __init snd_card_ad1848_probe(int dev) | 66 | static int __init snd_card_ad1848_probe(int dev) |
67 | { | 67 | { |
68 | snd_card_t *card; | 68 | struct snd_card *card; |
69 | ad1848_t *chip; | 69 | struct snd_ad1848 *chip; |
70 | snd_pcm_t *pcm; | 70 | struct snd_pcm *pcm; |
71 | int err; | 71 | int err; |
72 | 72 | ||
73 | if (port[dev] == SNDRV_AUTO_PORT) { | 73 | if (port[dev] == SNDRV_AUTO_PORT) { |