diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-06-28 00:46:46 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-28 00:46:46 -0400 |
commit | 2179a59db18ddf8eb3fd0133a3bee57f1c2b5b06 (patch) | |
tree | 575f59b6a0918b11f7c763aecf0c3e70478460d2 /drivers/bluetooth/bt3c_cs.c | |
parent | ad3fee560bc508008b3b2cf6358105c4c7081921 (diff) | |
parent | 99f95e5286df2f69edab8a04c7080d986ee4233b (diff) |
Merge /spare/repo/linux-2.6/
Diffstat (limited to 'drivers/bluetooth/bt3c_cs.c')
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index f71e5c76963d..9013cd759afb 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -935,6 +935,12 @@ static int bt3c_event(event_t event, int priority, event_callback_args_t *args) | |||
935 | return 0; | 935 | return 0; |
936 | } | 936 | } |
937 | 937 | ||
938 | static struct pcmcia_device_id bt3c_ids[] = { | ||
939 | PCMCIA_DEVICE_PROD_ID13("3COM", "Bluetooth PC Card", 0xefce0a31, 0xd4ce9b02), | ||
940 | PCMCIA_DEVICE_NULL | ||
941 | }; | ||
942 | MODULE_DEVICE_TABLE(pcmcia, bt3c_ids); | ||
943 | |||
938 | static struct pcmcia_driver bt3c_driver = { | 944 | static struct pcmcia_driver bt3c_driver = { |
939 | .owner = THIS_MODULE, | 945 | .owner = THIS_MODULE, |
940 | .drv = { | 946 | .drv = { |
@@ -942,6 +948,7 @@ static struct pcmcia_driver bt3c_driver = { | |||
942 | }, | 948 | }, |
943 | .attach = bt3c_attach, | 949 | .attach = bt3c_attach, |
944 | .detach = bt3c_detach, | 950 | .detach = bt3c_detach, |
951 | .id_table = bt3c_ids, | ||
945 | }; | 952 | }; |
946 | 953 | ||
947 | static int __init init_bt3c_cs(void) | 954 | static int __init init_bt3c_cs(void) |