From: Takashi Iwai Date: Wed, 29 Aug 2007 10:54:25 +0000 (+0200) Subject: [ALSA] Allow shared IRQ for CS5530 device X-Git-Tag: v2.6.24-rc1~832^2~135 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d4a485b3d02fe65b0a0bcec3c53760c17bdece3;p=platform%2Fkernel%2Flinux-3.10.git [ALSA] Allow shared IRQ for CS5530 device CS5530 is a PCI device and often shares the IRQ although the SB common routine tries to allocate it exclusively. This patch allows shared IRQ for CS5530. Signed-off-by: Takashi Iwai Signed-off-by: Jaroslav Kysela --- diff --git a/sound/isa/sb/sb_common.c b/sound/isa/sb/sb_common.c index efa9d5c..37470c3 100644 --- a/sound/isa/sb/sb_common.c +++ b/sound/isa/sb/sb_common.c @@ -234,7 +234,9 @@ int snd_sbdsp_create(struct snd_card *card, chip->dma16 = -1; chip->port = port; - if (request_irq(irq, irq_handler, hardware == SB_HW_ALS4000 ? + if (request_irq(irq, irq_handler, + (hardware == SB_HW_ALS4000 || + hardware == SB_HW_CS5530) ? IRQF_SHARED : IRQF_DISABLED, "SoundBlaster", (void *) chip)) { snd_printk(KERN_ERR "sb: can't grab irq %d\n", irq);