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:
a4ed359
)
[PATCH] pcmcia: id_table for synclink_cs.c
author
Dominik Brodowski
<
[email protected]
>
Mon, 27 Jun 2005 23:28:42 +0000
(16:28 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 28 Jun 2005 01:03:17 +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/char/pcmcia/synclink_cs.c
patch
|
blob
|
history
diff --git
a/drivers/char/pcmcia/synclink_cs.c
b/drivers/char/pcmcia/synclink_cs.c
index 1c8d866a49dced207ed4364d5b7e151135675956..f2ca4fffa214326b100b8ffa1658c825f596fa75 100644
(file)
--- a/
drivers/char/pcmcia/synclink_cs.c
+++ b/
drivers/char/pcmcia/synclink_cs.c
@@
-3081,6
+3081,12
@@
void mgslpc_remove_device(MGSLPC_INFO *remove_info)
}
}
+static struct pcmcia_device_id mgslpc_ids[] = {
+ PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
+ PCMCIA_DEVICE_NULL
+};
+MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
+
static struct pcmcia_driver mgslpc_driver = {
.owner = THIS_MODULE,
.drv = {
@@
-3088,6
+3094,7
@@
static struct pcmcia_driver mgslpc_driver = {
},
.attach = mgslpc_attach,
.detach = mgslpc_detach,
+ .id_table = mgslpc_ids,
};
static struct tty_operations mgslpc_ops = {