]> git.karo-electronics.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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 3 Dec 2012 20:59:12 +0000 (12:59 -0800)
commit 08ef79490dad6b88010e94795cf9f89b018ed504 upstream.

The drivers don't require the exclusive irqs.  Let's fix the deprecated
warnings.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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;