[PATCH] pcmcia: id_table for synclink_cs.c
[deliverable/linux.git] / drivers / char / pcmcia / synclink_cs.c
index 1c8d866a49dced207ed4364d5b7e151135675956..f2ca4fffa214326b100b8ffa1658c825f596fa75 100644 (file)
@@ -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 = {
This page took 0.024768 seconds and 5 git commands to generate.