aboutsummaryrefslogtreecommitdiffstats
path: root/sound/ppc
diff options
context:
space:
mode:
Diffstat (limited to 'sound/ppc')
-rw-r--r--sound/ppc/pmac.c6
-rw-r--r--sound/ppc/tumbler.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/sound/ppc/pmac.c b/sound/ppc/pmac.c
index 641430631505..c64af55865d4 100644
--- a/sound/ppc/pmac.c
+++ b/sound/ppc/pmac.c
@@ -713,7 +713,7 @@ void snd_pmac_beep_dma_stop(struct snd_pmac *chip)
713 * interrupt handlers 713 * interrupt handlers
714 */ 714 */
715static irqreturn_t 715static irqreturn_t
716snd_pmac_tx_intr(int irq, void *devid, struct pt_regs *regs) 716snd_pmac_tx_intr(int irq, void *devid)
717{ 717{
718 struct snd_pmac *chip = devid; 718 struct snd_pmac *chip = devid;
719 snd_pmac_pcm_update(chip, &chip->playback); 719 snd_pmac_pcm_update(chip, &chip->playback);
@@ -722,7 +722,7 @@ snd_pmac_tx_intr(int irq, void *devid, struct pt_regs *regs)
722 722
723 723
724static irqreturn_t 724static irqreturn_t
725snd_pmac_rx_intr(int irq, void *devid, struct pt_regs *regs) 725snd_pmac_rx_intr(int irq, void *devid)
726{ 726{
727 struct snd_pmac *chip = devid; 727 struct snd_pmac *chip = devid;
728 snd_pmac_pcm_update(chip, &chip->capture); 728 snd_pmac_pcm_update(chip, &chip->capture);
@@ -731,7 +731,7 @@ snd_pmac_rx_intr(int irq, void *devid, struct pt_regs *regs)
731 731
732 732
733static irqreturn_t 733static irqreturn_t
734snd_pmac_ctrl_intr(int irq, void *devid, struct pt_regs *regs) 734snd_pmac_ctrl_intr(int irq, void *devid)
735{ 735{
736 struct snd_pmac *chip = devid; 736 struct snd_pmac *chip = devid;
737 int ctrl = in_le32(&chip->awacs->control); 737 int ctrl = in_le32(&chip->awacs->control);
diff --git a/sound/ppc/tumbler.c b/sound/ppc/tumbler.c
index cdff53e4a17e..2fbe1d183fce 100644
--- a/sound/ppc/tumbler.c
+++ b/sound/ppc/tumbler.c
@@ -1017,7 +1017,7 @@ static void tumbler_update_automute(struct snd_pmac *chip, int do_notify)
1017 1017
1018 1018
1019/* interrupt - headphone plug changed */ 1019/* interrupt - headphone plug changed */
1020static irqreturn_t headphone_intr(int irq, void *devid, struct pt_regs *regs) 1020static irqreturn_t headphone_intr(int irq, void *devid)
1021{ 1021{
1022 struct snd_pmac *chip = devid; 1022 struct snd_pmac *chip = devid;
1023 if (chip->update_automute && chip->initialized) { 1023 if (chip->update_automute && chip->initialized) {