Add pcmcia_device_id table. Signed-off-by: Dominik Brodowski Index: 2.6.10/drivers/isdn/hisax/teles_cs.c =================================================================== --- 2.6.10.orig/drivers/isdn/hisax/teles_cs.c 2004-12-26 14:52:32.201538714 +0100 +++ 2.6.10/drivers/isdn/hisax/teles_cs.c 2004-12-26 16:12:18.600026648 +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, +}; + + 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)