Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08ef7949 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: pcmcia - Use pcmcia_request_irq()



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

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 81b85b6b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;

+1 −1
Original line number Diff line number Diff line
@@ -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;