[ALSA] Remove xxx_t typedefs: ISA GUS

Remove xxx_t typedefs from the ISA GUS drivers.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Takashi Iwai
2005-11-17 14:36:44 +01:00
committed by Jaroslav Kysela
parent 029d64b0cf
commit 5e2da20648
22 changed files with 654 additions and 643 deletions

View File

@ -30,12 +30,12 @@
* Timer 1 - 80us
*/
static int snd_gf1_timer1_start(snd_timer_t * timer)
static int snd_gf1_timer1_start(struct snd_timer * timer)
{
unsigned long flags;
unsigned char tmp;
unsigned int ticks;
snd_gus_card_t *gus;
struct snd_gus_card *gus;
gus = snd_timer_chip(timer);
spin_lock_irqsave(&gus->reg_lock, flags);
@ -48,11 +48,11 @@ static int snd_gf1_timer1_start(snd_timer_t * timer)
return 0;
}
static int snd_gf1_timer1_stop(snd_timer_t * timer)
static int snd_gf1_timer1_stop(struct snd_timer * timer)
{
unsigned long flags;
unsigned char tmp;
snd_gus_card_t *gus;
struct snd_gus_card *gus;
gus = snd_timer_chip(timer);
spin_lock_irqsave(&gus->reg_lock, flags);
@ -66,12 +66,12 @@ static int snd_gf1_timer1_stop(snd_timer_t * timer)
* Timer 2 - 320us
*/
static int snd_gf1_timer2_start(snd_timer_t * timer)
static int snd_gf1_timer2_start(struct snd_timer * timer)
{
unsigned long flags;
unsigned char tmp;
unsigned int ticks;
snd_gus_card_t *gus;
struct snd_gus_card *gus;
gus = snd_timer_chip(timer);
spin_lock_irqsave(&gus->reg_lock, flags);
@ -84,11 +84,11 @@ static int snd_gf1_timer2_start(snd_timer_t * timer)
return 0;
}
static int snd_gf1_timer2_stop(snd_timer_t * timer)
static int snd_gf1_timer2_stop(struct snd_timer * timer)
{
unsigned long flags;
unsigned char tmp;
snd_gus_card_t *gus;
struct snd_gus_card *gus;
gus = snd_timer_chip(timer);
spin_lock_irqsave(&gus->reg_lock, flags);
@ -102,18 +102,18 @@ static int snd_gf1_timer2_stop(snd_timer_t * timer)
*/
static void snd_gf1_interrupt_timer1(snd_gus_card_t * gus)
static void snd_gf1_interrupt_timer1(struct snd_gus_card * gus)
{
snd_timer_t *timer = gus->gf1.timer1;
struct snd_timer *timer = gus->gf1.timer1;
if (timer == NULL)
return;
snd_timer_interrupt(timer, timer->sticks);
}
static void snd_gf1_interrupt_timer2(snd_gus_card_t * gus)
static void snd_gf1_interrupt_timer2(struct snd_gus_card * gus)
{
snd_timer_t *timer = gus->gf1.timer2;
struct snd_timer *timer = gus->gf1.timer2;
if (timer == NULL)
return;
@ -124,7 +124,7 @@ static void snd_gf1_interrupt_timer2(snd_gus_card_t * gus)
*/
static struct _snd_timer_hardware snd_gf1_timer1 =
static struct snd_timer_hardware snd_gf1_timer1 =
{
.flags = SNDRV_TIMER_HW_STOP,
.resolution = 80000,
@ -133,7 +133,7 @@ static struct _snd_timer_hardware snd_gf1_timer1 =
.stop = snd_gf1_timer1_stop,
};
static struct _snd_timer_hardware snd_gf1_timer2 =
static struct snd_timer_hardware snd_gf1_timer2 =
{
.flags = SNDRV_TIMER_HW_STOP,
.resolution = 320000,
@ -142,22 +142,22 @@ static struct _snd_timer_hardware snd_gf1_timer2 =
.stop = snd_gf1_timer2_stop,
};
static void snd_gf1_timer1_free(snd_timer_t *timer)
static void snd_gf1_timer1_free(struct snd_timer *timer)
{
snd_gus_card_t *gus = timer->private_data;
struct snd_gus_card *gus = timer->private_data;
gus->gf1.timer1 = NULL;
}
static void snd_gf1_timer2_free(snd_timer_t *timer)
static void snd_gf1_timer2_free(struct snd_timer *timer)
{
snd_gus_card_t *gus = timer->private_data;
struct snd_gus_card *gus = timer->private_data;
gus->gf1.timer2 = NULL;
}
void snd_gf1_timers_init(snd_gus_card_t * gus)
void snd_gf1_timers_init(struct snd_gus_card * gus)
{
snd_timer_t *timer;
snd_timer_id_t tid;
struct snd_timer *timer;
struct snd_timer_id tid;
if (gus->gf1.timer1 != NULL || gus->gf1.timer2 != NULL)
return;
@ -190,7 +190,7 @@ void snd_gf1_timers_init(snd_gus_card_t * gus)
gus->gf1.timer2 = timer;
}
void snd_gf1_timers_done(snd_gus_card_t * gus)
void snd_gf1_timers_done(struct snd_gus_card * gus)
{
snd_gf1_set_default_handlers(gus, SNDRV_GF1_HANDLER_TIMER1 | SNDRV_GF1_HANDLER_TIMER2);
if (gus->gf1.timer1) {