aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/au88x0/au88x0.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2005-11-17 08:55:19 -0500
committerJaroslav Kysela <perex@suse.cz>2006-01-03 06:18:59 -0500
commit2fd16874aa6322e8b61879a78f3b485999506833 (patch)
tree3d7033f5e9a7873f0c7b871b8b097c79c1cec5e6 /sound/pci/au88x0/au88x0.c
parent208a1b4cb5ad97510aa9cbe51d09e55656691cb4 (diff)
[ALSA] Remove xxx_t typedefs: PCI AU88x0
Modules: au88x0 driver Remove xxx_t typedefs from the PCI AU88x0 drivers. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/au88x0/au88x0.c')
-rw-r--r--sound/pci/au88x0/au88x0.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/au88x0/au88x0.c b/sound/pci/au88x0/au88x0.c
index d965609d8b38..7c547859ae00 100644
--- a/sound/pci/au88x0/au88x0.c
+++ b/sound/pci/au88x0/au88x0.c
@@ -118,7 +118,7 @@ static void __devinit snd_vortex_workaround(struct pci_dev *vortex, int fix)
118 118
119// component-destructor 119// component-destructor
120// (see "Management of Cards and Components") 120// (see "Management of Cards and Components")
121static int snd_vortex_dev_free(snd_device_t * device) 121static int snd_vortex_dev_free(struct snd_device *device)
122{ 122{
123 vortex_t *vortex = device->device_data; 123 vortex_t *vortex = device->device_data;
124 124
@@ -137,11 +137,11 @@ static int snd_vortex_dev_free(snd_device_t * device)
137// chip-specific constructor 137// chip-specific constructor
138// (see "Management of Cards and Components") 138// (see "Management of Cards and Components")
139static int __devinit 139static int __devinit
140snd_vortex_create(snd_card_t * card, struct pci_dev *pci, vortex_t ** rchip) 140snd_vortex_create(struct snd_card *card, struct pci_dev *pci, vortex_t ** rchip)
141{ 141{
142 vortex_t *chip; 142 vortex_t *chip;
143 int err; 143 int err;
144 static snd_device_ops_t ops = { 144 static struct snd_device_ops ops = {
145 .dev_free = snd_vortex_dev_free, 145 .dev_free = snd_vortex_dev_free,
146 }; 146 };
147 147
@@ -233,7 +233,7 @@ static int __devinit
233snd_vortex_probe(struct pci_dev *pci, const struct pci_device_id *pci_id) 233snd_vortex_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
234{ 234{
235 static int dev; 235 static int dev;
236 snd_card_t *card; 236 struct snd_card *card;
237 vortex_t *chip; 237 vortex_t *chip;
238 int err; 238 int err;
239 239