Add pcmcia_device_id table. Signed-off-by: Dominik Brodowski Index: 2.6.11-rc4/drivers/isdn/hisax/teles_cs.c =================================================================== --- 2.6.11-rc4.orig/drivers/isdn/hisax/teles_cs.c 2005-02-13 15:40:38.000000000 +0100 +++ 2.6.11-rc4/drivers/isdn/hisax/teles_cs.c 2005-02-16 22:47:49.000000000 +0100 @@ -489,6 +489,12 @@ return 0; } /* teles_cs_event */ +static struct pcmcia_device_id teles_ids[] = { + PCMCIA_DEVICE_PROD_ID12("TELES", "S0/PC", 0x67b50eae, 0xe9e70119), + PCMCIA_DEVICE_NULL, +}; +MODULE_DEVICE_TABLE(pcmcia, teles_ids); + static struct pcmcia_driver teles_cs_driver = { .owner = THIS_MODULE, .drv = { @@ -496,6 +502,7 @@ }, .attach = teles_attach, .detach = teles_detach, + .id_table = teles_ids, }; static int __init init_teles_cs(void)