aboutsummaryrefslogtreecommitdiffstats
path: root/sound/isa/wavefront/wavefront_fx.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2005-11-17 08:39:06 -0500
committerJaroslav Kysela <perex@suse.cz>2006-01-03 06:18:30 -0500
commit542172f31d41e689988aedcf0d6e67dfe757736a (patch)
treecaad40a7368afc0eb719491b09e84f279b1f9bf6 /sound/isa/wavefront/wavefront_fx.c
parent346c7a689542285aef9b899eda7693d4b912d60d (diff)
[ALSA] Remove xxx_t typedefs: ISA Wavefront
Modules: Wavefront drivers Remove xxx_t typedefs from the ISA Wavefront driver. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/wavefront/wavefront_fx.c')
-rw-r--r--sound/isa/wavefront/wavefront_fx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/isa/wavefront/wavefront_fx.c b/sound/isa/wavefront/wavefront_fx.c
index 32379688eed4..180661c5ffdc 100644
--- a/sound/isa/wavefront/wavefront_fx.c
+++ b/sound/isa/wavefront/wavefront_fx.c
@@ -460,7 +460,7 @@ snd_wavefront_fx_detect (snd_wavefront_t *dev)
460} 460}
461 461
462int 462int
463snd_wavefront_fx_open (snd_hwdep_t *hw, struct file *file) 463snd_wavefront_fx_open (struct snd_hwdep *hw, struct file *file)
464 464
465{ 465{
466 if (!try_module_get(hw->card->module)) 466 if (!try_module_get(hw->card->module))
@@ -470,7 +470,7 @@ snd_wavefront_fx_open (snd_hwdep_t *hw, struct file *file)
470} 470}
471 471
472int 472int
473snd_wavefront_fx_release (snd_hwdep_t *hw, struct file *file) 473snd_wavefront_fx_release (struct snd_hwdep *hw, struct file *file)
474 474
475{ 475{
476 module_put(hw->card->module); 476 module_put(hw->card->module);
@@ -478,11 +478,11 @@ snd_wavefront_fx_release (snd_hwdep_t *hw, struct file *file)
478} 478}
479 479
480int 480int
481snd_wavefront_fx_ioctl (snd_hwdep_t *sdev, struct file *file, 481snd_wavefront_fx_ioctl (struct snd_hwdep *sdev, struct file *file,
482 unsigned int cmd, unsigned long arg) 482 unsigned int cmd, unsigned long arg)
483 483
484{ 484{
485 snd_card_t *card; 485 struct snd_card *card;
486 snd_wavefront_card_t *acard; 486 snd_wavefront_card_t *acard;
487 snd_wavefront_t *dev; 487 snd_wavefront_t *dev;
488 wavefront_fx_info r; 488 wavefront_fx_info r;