mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 08:05:27 +08:00
[PATCH] pcmcia: id_table for wl3501_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
707997343a
commit
77b73f9b00
@ -2239,6 +2239,12 @@ static int wl3501_event(event_t event, int pri, event_callback_args_t *args)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct pcmcia_device_id wl3501_ids[] = {
|
||||
PCMCIA_DEVICE_MANF_CARD(0xd601, 0x0001),
|
||||
PCMCIA_DEVICE_NULL
|
||||
};
|
||||
MODULE_DEVICE_TABLE(pcmcia, wl3501_ids);
|
||||
|
||||
static struct pcmcia_driver wl3501_driver = {
|
||||
.owner = THIS_MODULE,
|
||||
.drv = {
|
||||
@ -2246,6 +2252,7 @@ static struct pcmcia_driver wl3501_driver = {
|
||||
},
|
||||
.attach = wl3501_attach,
|
||||
.detach = wl3501_detach,
|
||||
.id_table = wl3501_ids,
|
||||
};
|
||||
|
||||
static int __init wl3501_init_module(void)
|
||||
|
Loading…
Reference in New Issue
Block a user