diff options
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index fe954e5d9a1d..bb12f7daeb91 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -807,6 +807,13 @@ static int dtl1_event(event_t event, int priority, event_callback_args_t *args) | |||
807 | return 0; | 807 | return 0; |
808 | } | 808 | } |
809 | 809 | ||
810 | static struct pcmcia_device_id dtl1_ids[] = { | ||
811 | PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d), | ||
812 | PCMCIA_DEVICE_PROD_ID12("Socket", "CF", 0xb38bcc2e, 0x44ebf863), | ||
813 | PCMCIA_DEVICE_NULL | ||
814 | }; | ||
815 | MODULE_DEVICE_TABLE(pcmcia, dtl1_ids); | ||
816 | |||
810 | static struct pcmcia_driver dtl1_driver = { | 817 | static struct pcmcia_driver dtl1_driver = { |
811 | .owner = THIS_MODULE, | 818 | .owner = THIS_MODULE, |
812 | .drv = { | 819 | .drv = { |
@@ -814,6 +821,7 @@ static struct pcmcia_driver dtl1_driver = { | |||
814 | }, | 821 | }, |
815 | .attach = dtl1_attach, | 822 | .attach = dtl1_attach, |
816 | .detach = dtl1_detach, | 823 | .detach = dtl1_detach, |
824 | .id_table = dtl1_ids, | ||
817 | }; | 825 | }; |
818 | 826 | ||
819 | static int __init init_dtl1_cs(void) | 827 | static int __init init_dtl1_cs(void) |