ALSA: pcmcia - Use pcmcia_request_irq()
The drivers don't require the exclusive irqs. Let's fix the deprecated warnings. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
81b85b6bd9
commit
08ef79490d
|
@ -223,7 +223,7 @@ static int pdacf_config(struct pcmcia_device *link)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
|
||||||
ret = pcmcia_request_exclusive_irq(link, pdacf_interrupt);
|
ret = pcmcia_request_irq(link, pdacf_interrupt);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
|
||||||
|
|
|
@ -229,7 +229,7 @@ static int vxpocket_config(struct pcmcia_device *link)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
|
||||||
ret = pcmcia_request_exclusive_irq(link, snd_vx_irq_handler);
|
ret = pcmcia_request_irq(link, snd_vx_irq_handler);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue