diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2009-12-09 14:12:43 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-12-10 05:39:48 -0500 |
commit | 5f60e496083efb01893a899b6885828330db971f (patch) | |
tree | ea21538d0b263f494e2cb1e51cd3333cf30db286 | |
parent | 84194883bcf89383ea4230116bb0195af5ec5829 (diff) |
ALSA: opti93x: fix irq releasing if the irq cannot be allocated
Use the chip->irq to check if the irq should be released so the irq is not released
if it has not been allocated.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/isa/opti9xx/opti92x-ad1848.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sound/isa/opti9xx/opti92x-ad1848.c b/sound/isa/opti9xx/opti92x-ad1848.c index 8c88401c79bc..d8eac3f28947 100644 --- a/sound/isa/opti9xx/opti92x-ad1848.c +++ b/sound/isa/opti9xx/opti92x-ad1848.c | |||
@@ -548,10 +548,13 @@ __skip_mpu: | |||
548 | 548 | ||
549 | static irqreturn_t snd_opti93x_interrupt(int irq, void *dev_id) | 549 | static irqreturn_t snd_opti93x_interrupt(int irq, void *dev_id) |
550 | { | 550 | { |
551 | struct snd_wss *codec = dev_id; | 551 | struct snd_opti9xx *chip = dev_id; |
552 | struct snd_opti9xx *chip = codec->card->private_data; | 552 | struct snd_wss *codec = chip->codec; |
553 | unsigned char status; | 553 | unsigned char status; |
554 | 554 | ||
555 | if (!codec) | ||
556 | return IRQ_HANDLED; | ||
557 | |||
555 | status = snd_opti9xx_read(chip, OPTi9XX_MC_REG(11)); | 558 | status = snd_opti9xx_read(chip, OPTi9XX_MC_REG(11)); |
556 | if ((status & OPTi93X_IRQ_PLAYBACK) && codec->playback_substream) | 559 | if ((status & OPTi93X_IRQ_PLAYBACK) && codec->playback_substream) |
557 | snd_pcm_period_elapsed(codec->playback_substream); | 560 | snd_pcm_period_elapsed(codec->playback_substream); |
@@ -691,10 +694,9 @@ static void snd_card_opti9xx_free(struct snd_card *card) | |||
691 | 694 | ||
692 | if (chip) { | 695 | if (chip) { |
693 | #ifdef OPTi93X | 696 | #ifdef OPTi93X |
694 | struct snd_wss *codec = chip->codec; | 697 | if (chip->irq > 0) { |
695 | if (codec && codec->irq > 0) { | 698 | disable_irq(chip->irq); |
696 | disable_irq(codec->irq); | 699 | free_irq(chip->irq, chip); |
697 | free_irq(codec->irq, codec); | ||
698 | } | 700 | } |
699 | release_and_free_resource(chip->res_mc_indir); | 701 | release_and_free_resource(chip->res_mc_indir); |
700 | #endif | 702 | #endif |
@@ -759,9 +761,9 @@ static int __devinit snd_opti9xx_probe(struct snd_card *card) | |||
759 | #endif | 761 | #endif |
760 | #ifdef OPTi93X | 762 | #ifdef OPTi93X |
761 | error = request_irq(irq, snd_opti93x_interrupt, | 763 | error = request_irq(irq, snd_opti93x_interrupt, |
762 | IRQF_DISABLED, DEV_NAME" - WSS", codec); | 764 | IRQF_DISABLED, DEV_NAME" - WSS", chip); |
763 | if (error < 0) { | 765 | if (error < 0) { |
764 | snd_printk(KERN_ERR "opti9xx: can't grab IRQ %d\n", chip->irq); | 766 | snd_printk(KERN_ERR "opti9xx: can't grab IRQ %d\n", irq); |
765 | return error; | 767 | return error; |
766 | } | 768 | } |
767 | #endif | 769 | #endif |