diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1995-11-14 08:00:00 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1995-11-14 08:00:00 +0000 |
commit | e7c2a72e2680827d6a733931273a93461c0d8d1b (patch) | |
tree | c9abeda78ef7504062bb2e816bcf3e3c9d680112 /drivers/sound/gus_card.c | |
parent | ec6044459060a8c9ce7f64405c465d141898548c (diff) |
Import of Linux/MIPS 1.3.0
Diffstat (limited to 'drivers/sound/gus_card.c')
-rw-r--r-- | drivers/sound/gus_card.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/sound/gus_card.c b/drivers/sound/gus_card.c index 614532c7d..9560babb7 100644 --- a/drivers/sound/gus_card.c +++ b/drivers/sound/gus_card.c @@ -33,7 +33,7 @@ #include "gus_hw.h" -void gusintr (int); +void gusintr (int, struct pt_regs * regs); int gus_base, gus_irq, gus_dma; extern int gus_wave_volume; @@ -118,7 +118,7 @@ probe_gus (struct address_info *hw_config) } void -gusintr (int irq) +gusintr (int irq, struct pt_regs * regs) { unsigned char src; @@ -128,7 +128,7 @@ gusintr (int irq) #ifndef EXCLUDE_GUSMAX if (have_gus_max) - ad1848_interrupt (irq); + ad1848_interrupt (irq, regs); #endif while (1) |