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 ce33be0..66488a7 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 d9ef21d..31777d1 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;