diff options
-rw-r--r-- | drivers/bluetooth/bluecard_cs.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c index e481cc411b5d..5ef9adb9fe73 100644 --- a/drivers/bluetooth/bluecard_cs.c +++ b/drivers/bluetooth/bluecard_cs.c | |||
@@ -1089,6 +1089,14 @@ static int bluecard_event(event_t event, int priority, event_callback_args_t *ar | |||
1089 | return 0; | 1089 | return 0; |
1090 | } | 1090 | } |
1091 | 1091 | ||
1092 | static struct pcmcia_device_id bluecard_ids[] = { | ||
1093 | PCMCIA_DEVICE_PROD_ID12("BlueCard", "LSE041", 0xbaf16fbf, 0x657cc15e), | ||
1094 | PCMCIA_DEVICE_PROD_ID12("BTCFCARD", "LSE139", 0xe3987764, 0x2524b59c), | ||
1095 | PCMCIA_DEVICE_PROD_ID12("WSS", "LSE039", 0x0a0736ec, 0x24e6dfab), | ||
1096 | PCMCIA_DEVICE_NULL | ||
1097 | }; | ||
1098 | MODULE_DEVICE_TABLE(pcmcia, bluecard_ids); | ||
1099 | |||
1092 | static struct pcmcia_driver bluecard_driver = { | 1100 | static struct pcmcia_driver bluecard_driver = { |
1093 | .owner = THIS_MODULE, | 1101 | .owner = THIS_MODULE, |
1094 | .drv = { | 1102 | .drv = { |
@@ -1096,6 +1104,7 @@ static struct pcmcia_driver bluecard_driver = { | |||
1096 | }, | 1104 | }, |
1097 | .attach = bluecard_attach, | 1105 | .attach = bluecard_attach, |
1098 | .detach = bluecard_detach, | 1106 | .detach = bluecard_detach, |
1107 | .id_table = bluecard_ids, | ||
1099 | }; | 1108 | }; |
1100 | 1109 | ||
1101 | static int __init init_bluecard_cs(void) | 1110 | static int __init init_bluecard_cs(void) |