Add pcmcia_device_id table. Signed-off-by: Dominik Brodowski Index: 2.6.10/drivers/bluetooth/dtl1_cs.c =================================================================== --- 2.6.10.orig/drivers/bluetooth/dtl1_cs.c 2004-12-26 18:11:04.000000000 +0100 +++ 2.6.10/drivers/bluetooth/dtl1_cs.c 2004-12-27 15:40:04.970029284 +0100 @@ -807,6 +807,12 @@ return 0; } +static struct pcmcia_device_id dtl1_ids[] = { + PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d), + PCMCIA_DEVICE_PROD_ID12("Socket", "CF", 0xb38bcc2e, 0x44ebf863), + PCMCIA_DEVICE_NULL +}; + static struct pcmcia_driver dtl1_driver = { .owner = THIS_MODULE, .drv = { @@ -814,6 +820,7 @@ }, .attach = dtl1_attach, .detach = dtl1_detach, + .id_table = dtl1_ids, }; static int __init init_dtl1_cs(void)