mirror of https://gitee.com/openkylin/linux.git
[PATCH] pcmcia: id_table for fdomain_stub
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
c414f7550f
commit
2d1fb37621
|
@ -299,6 +299,15 @@ static int fdomain_event(event_t event, int priority,
|
|||
return 0;
|
||||
} /* fdomain_event */
|
||||
|
||||
|
||||
static struct pcmcia_device_id fdomain_ids[] = {
|
||||
PCMCIA_DEVICE_PROD_ID12("IBM Corp.", "SCSI PCMCIA Card", 0xe3736c88, 0x859cad20),
|
||||
PCMCIA_DEVICE_PROD_ID1("SCSI PCMCIA Adapter Card", 0x8dacb57e),
|
||||
PCMCIA_DEVICE_PROD_ID12(" SIMPLE TECHNOLOGY Corporation", "SCSI PCMCIA Credit Card Controller", 0x182bdafe, 0xc80d106f),
|
||||
PCMCIA_DEVICE_NULL,
|
||||
};
|
||||
MODULE_DEVICE_TABLE(pcmcia, fdomain_ids);
|
||||
|
||||
static struct pcmcia_driver fdomain_cs_driver = {
|
||||
.owner = THIS_MODULE,
|
||||
.drv = {
|
||||
|
@ -306,6 +315,7 @@ static struct pcmcia_driver fdomain_cs_driver = {
|
|||
},
|
||||
.attach = fdomain_attach,
|
||||
.detach = fdomain_detach,
|
||||
.id_table = fdomain_ids,
|
||||
};
|
||||
|
||||
static int __init init_fdomain_cs(void)
|
||||
|
|
Loading…
Reference in New Issue