Add pcmcia_device_id table. Signed-off-by: Dominik Brodowski Index: 2.6.10/drivers/bluetooth/bt3c_cs.c =================================================================== --- 2.6.10.orig/drivers/bluetooth/bt3c_cs.c 2004-12-26 18:11:04.000000000 +0100 +++ 2.6.10/drivers/bluetooth/bt3c_cs.c 2004-12-27 15:36:19.614911445 +0100 @@ -935,6 +935,11 @@ return 0; } +static struct pcmcia_device_id bt3c_ids[] = { + PCMCIA_DEVICE_PROD_ID13("3COM", "Bluetooth PC Card", 0xefce0a31, 0xd4ce9b02), + PCMCIA_DEVICE_NULL +}; + static struct pcmcia_driver bt3c_driver = { .owner = THIS_MODULE, .drv = { @@ -942,6 +947,7 @@ }, .attach = bt3c_attach, .detach = bt3c_detach, + .id_table = bt3c_ids, }; static int __init init_bt3c_cs(void)