mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
[PATCH] pcmcia: id_table for btuart_cs.c
Add pcmcia_device_id table. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
a01c3ed48e
commit
279c936153
@ -855,6 +855,12 @@ static int btuart_event(event_t event, int priority, event_callback_args_t *args
|
|||||||
return 0;
|
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 = {
|
static struct pcmcia_driver btuart_driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.drv = {
|
.drv = {
|
||||||
@ -862,6 +868,7 @@ static struct pcmcia_driver btuart_driver = {
|
|||||||
},
|
},
|
||||||
.attach = btuart_attach,
|
.attach = btuart_attach,
|
||||||
.detach = btuart_detach,
|
.detach = btuart_detach,
|
||||||
|
.id_table = btuart_ids,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init init_btuart_cs(void)
|
static int __init init_btuart_cs(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user