diff options
Diffstat (limited to 'sound/ppc')
-rw-r--r-- | sound/ppc/pmac.c | 6 | ||||
-rw-r--r-- | sound/ppc/tumbler.c | 2 |
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 | */ |
715 | static irqreturn_t | 715 | static irqreturn_t |
716 | snd_pmac_tx_intr(int irq, void *devid, struct pt_regs *regs) | 716 | snd_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 | ||
724 | static irqreturn_t | 724 | static irqreturn_t |
725 | snd_pmac_rx_intr(int irq, void *devid, struct pt_regs *regs) | 725 | snd_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 | ||
733 | static irqreturn_t | 733 | static irqreturn_t |
734 | snd_pmac_ctrl_intr(int irq, void *devid, struct pt_regs *regs) | 734 | snd_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 */ |
1020 | static irqreturn_t headphone_intr(int irq, void *devid, struct pt_regs *regs) | 1020 | static 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) { |