aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pcmcia
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-06-14 09:57:08 -0400
committerTakashi Iwai <tiwai@suse.de>2011-07-08 04:11:35 -0400
commit08ef79490dad6b88010e94795cf9f89b018ed504 (patch)
tree502f81a03967342952a5faae90d5fa129d75f951 /sound/pcmcia
parent81b85b6bd91e58bf800cbb3047aa74e61aff7bd9 (diff)
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>
Diffstat (limited to 'sound/pcmcia')
-rw-r--r--sound/pcmcia/pdaudiocf/pdaudiocf.c2
-rw-r--r--sound/pcmcia/vx/vxpocket.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.c b/sound/pcmcia/pdaudiocf/pdaudiocf.c
index ce33be0e4e98..66488a7a5706 100644
--- a/sound/pcmcia/pdaudiocf/pdaudiocf.c
+++ b/sound/pcmcia/pdaudiocf/pdaudiocf.c
@@ -223,7 +223,7 @@ static int pdacf_config(struct pcmcia_device *link)
223 if (ret) 223 if (ret)
224 goto failed; 224 goto failed;
225 225
226 ret = pcmcia_request_exclusive_irq(link, pdacf_interrupt); 226 ret = pcmcia_request_irq(link, pdacf_interrupt);
227 if (ret) 227 if (ret)
228 goto failed; 228 goto failed;
229 229
diff --git a/sound/pcmcia/vx/vxpocket.c b/sound/pcmcia/vx/vxpocket.c
index d9ef21d8fa73..31777d1ea49f 100644
--- a/sound/pcmcia/vx/vxpocket.c
+++ b/sound/pcmcia/vx/vxpocket.c
@@ -229,7 +229,7 @@ static int vxpocket_config(struct pcmcia_device *link)
229 if (ret) 229 if (ret)
230 goto failed; 230 goto failed;
231 231
232 ret = pcmcia_request_exclusive_irq(link, snd_vx_irq_handler); 232 ret = pcmcia_request_irq(link, snd_vx_irq_handler);
233 if (ret) 233 if (ret)
234 goto failed; 234 goto failed;
235 235