projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a01c3ed
)
[PATCH] pcmcia: id_table for btuart_cs.c
author
Dominik Brodowski
<
[email protected]
>
Mon, 27 Jun 2005 23:28:38 +0000
(16:28 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 28 Jun 2005 01:03:15 +0000
(18:03 -0700)
Add pcmcia_device_id table.
Signed-off-by: Dominik Brodowski <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/bluetooth/btuart_cs.c
patch
|
blob
|
history
diff --git
a/drivers/bluetooth/btuart_cs.c
b/drivers/bluetooth/btuart_cs.c
index ad8d972444a522e682776e97ffbb1fe758df5a06..c479484a1f7f0d004aa888be03b6103d2bc85ebb 100644
(file)
--- a/
drivers/bluetooth/btuart_cs.c
+++ b/
drivers/bluetooth/btuart_cs.c
@@
-855,6
+855,12
@@
static int btuart_event(event_t event, int priority, event_callback_args_t *args
return 0;
}
+static struct pcmcia_device_id btuart_ids[] = {
+ /* don't use this driver. Use serial_cs + hci_uart instead */
+ PCMCIA_DEVICE_NULL
+};
+MODULE_DEVICE_TABLE(pcmcia, btuart_ids);
+
static struct pcmcia_driver btuart_driver = {
.owner = THIS_MODULE,
.drv = {
@@
-862,6
+868,7
@@
static struct pcmcia_driver btuart_driver = {
},
.attach = btuart_attach,
.detach = btuart_detach,
+ .id_table = btuart_ids,
};
static int __init init_btuart_cs(void)