[PATCH] pcmcia: id_table for pdaudiocf.c
Add pcmcia_device_id table. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
77b73f9b00
commit
a4ed359898
@@ -380,13 +380,20 @@ static int pdacf_event(event_t event, int priority, event_callback_args_t *args)
|
|||||||
/*
|
/*
|
||||||
* Module entry points
|
* Module entry points
|
||||||
*/
|
*/
|
||||||
|
static struct pcmcia_device_id snd_pdacf_ids[] = {
|
||||||
|
PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45),
|
||||||
|
PCMCIA_DEVICE_NULL
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids);
|
||||||
|
|
||||||
static struct pcmcia_driver pdacf_cs_driver = {
|
static struct pcmcia_driver pdacf_cs_driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.drv = {
|
.drv = {
|
||||||
.name = "snd-pdaudiocf",
|
.name = "snd-pdaudiocf",
|
||||||
},
|
},
|
||||||
.attach = snd_pdacf_attach,
|
.attach = snd_pdacf_attach,
|
||||||
.detach = snd_pdacf_detach
|
.detach = snd_pdacf_detach,
|
||||||
|
.id_table = snd_pdacf_ids,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init init_pdacf(void)
|
static int __init init_pdacf(void)
|
||||||
|
Reference in New Issue
Block a user