mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
[PATCH] pcmcia: id_table for synclink_cs.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
a4ed359898
commit
4af48c8c16
@ -3081,6 +3081,12 @@ void mgslpc_remove_device(MGSLPC_INFO *remove_info)
|
||||
}
|
||||
}
|
||||
|
||||
static struct pcmcia_device_id mgslpc_ids[] = {
|
||||
PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
|
||||
PCMCIA_DEVICE_NULL
|
||||
};
|
||||
MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
|
||||
|
||||
static struct pcmcia_driver mgslpc_driver = {
|
||||
.owner = THIS_MODULE,
|
||||
.drv = {
|
||||
@ -3088,6 +3094,7 @@ static struct pcmcia_driver mgslpc_driver = {
|
||||
},
|
||||
.attach = mgslpc_attach,
|
||||
.detach = mgslpc_detach,
|
||||
.id_table = mgslpc_ids,
|
||||
};
|
||||
|
||||
static struct tty_operations mgslpc_ops = {
|
||||
|
Loading…
Reference in New Issue
Block a user