mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[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:
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
|
||||
*/
|
||||
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 = {
|
||||
.owner = THIS_MODULE,
|
||||
.drv = {
|
||||
.name = "snd-pdaudiocf",
|
||||
},
|
||||
.attach = snd_pdacf_attach,
|
||||
.detach = snd_pdacf_detach
|
||||
.detach = snd_pdacf_detach,
|
||||
.id_table = snd_pdacf_ids,
|
||||
};
|
||||
|
||||
static int __init init_pdacf(void)
|
||||
|
Loading…
Reference in New Issue
Block a user