Skip to content

Commit

Permalink
ALSA: pcmcia - Use pcmcia_request_irq()
Browse files Browse the repository at this point in the history
The drivers don't require the exclusive irqs.  Let's fix the deprecated
warnings.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Jul 8, 2011
1 parent 81b85b6 commit 08ef794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sound/pcmcia/pdaudiocf/pdaudiocf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion sound/pcmcia/vx/vxpocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 08ef794

Please sign in to comment.