diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-06-28 00:46:22 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-28 00:46:22 -0400 |
commit | c36ad397a30fcf9369d82584324cc24189eb6b1c (patch) | |
tree | a5cbb451a2e9ea3ea12b6d279c72d77ac96c3028 /sound/pcmcia/pdaudiocf/pdaudiocf.c | |
parent | c903e41e67046e7f52bbc404bd5aa654d12540cc (diff) | |
parent | 99f95e5286df2f69edab8a04c7080d986ee4233b (diff) |
Merge /spare/repo/linux-2.6/
Diffstat (limited to 'sound/pcmcia/pdaudiocf/pdaudiocf.c')
-rw-r--r-- | sound/pcmcia/pdaudiocf/pdaudiocf.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.c b/sound/pcmcia/pdaudiocf/pdaudiocf.c index f72c81cc9952..2d4f8e28478b 100644 --- a/sound/pcmcia/pdaudiocf/pdaudiocf.c +++ b/sound/pcmcia/pdaudiocf/pdaudiocf.c | |||
@@ -380,13 +380,20 @@ static int pdacf_event(event_t event, int priority, event_callback_args_t *args) | |||
380 | /* | 380 | /* |
381 | * Module entry points | 381 | * Module entry points |
382 | */ | 382 | */ |
383 | static struct pcmcia_device_id snd_pdacf_ids[] = { | ||
384 | PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45), | ||
385 | PCMCIA_DEVICE_NULL | ||
386 | }; | ||
387 | MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids); | ||
388 | |||
383 | static struct pcmcia_driver pdacf_cs_driver = { | 389 | static struct pcmcia_driver pdacf_cs_driver = { |
384 | .owner = THIS_MODULE, | 390 | .owner = THIS_MODULE, |
385 | .drv = { | 391 | .drv = { |
386 | .name = "snd-pdaudiocf", | 392 | .name = "snd-pdaudiocf", |
387 | }, | 393 | }, |
388 | .attach = snd_pdacf_attach, | 394 | .attach = snd_pdacf_attach, |
389 | .detach = snd_pdacf_detach | 395 | .detach = snd_pdacf_detach, |
396 | .id_table = snd_pdacf_ids, | ||
390 | }; | 397 | }; |
391 | 398 | ||
392 | static int __init init_pdacf(void) | 399 | static int __init init_pdacf(void) |