]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: pcmcia - Use pcmcia_request_irq()
authorTakashi Iwai <tiwai@suse.de>
Tue, 14 Jun 2011 13:57:08 +0000 (15:57 +0200)
committerTakashi Iwai <tiwai@suse.de>
Fri, 8 Jul 2011 08:11:35 +0000 (10:11 +0200)
The drivers don't require the exclusive irqs.  Let's fix the deprecated
warnings.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pcmcia/pdaudiocf/pdaudiocf.c
sound/pcmcia/vx/vxpocket.c

index ce33be0e4e9841f5864d95b4e091cdb4cf69df43..66488a7a57060d1f227c52851460e4789c7ec722 100644 (file)
@@ -223,7 +223,7 @@ static int pdacf_config(struct pcmcia_device *link)
        if (ret)
                goto failed;
 
-       ret = pcmcia_request_exclusive_irq(link, pdacf_interrupt);
+       ret = pcmcia_request_irq(link, pdacf_interrupt);
        if (ret)
                goto failed;
 
index d9ef21d8fa7321fff082401301adcfc60fb102d1..31777d1ea49f9fb00dc7dcce8ff9b8df3eba9431 100644 (file)
@@ -229,7 +229,7 @@ static int vxpocket_config(struct pcmcia_device *link)
        if (ret)
                goto failed;
 
-       ret = pcmcia_request_exclusive_irq(link, snd_vx_irq_handler);
+       ret = pcmcia_request_irq(link, snd_vx_irq_handler);
        if (ret)
                goto failed;