diff options
| author | Dominik Brodowski <linux@dominikbrodowski.net> | 2005-06-27 19:28:24 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-27 21:03:11 -0400 |
| commit | 0a10d73dad86a023f343f80cc9cb71ea4e140192 (patch) | |
| tree | 5e6578326fc233cb70d8895e23dc1b19c64c2b1d | |
| parent | a58e26cb1163353d8a9b9cfd0d3f35df34f63141 (diff) | |
[PATCH] pcmcia: id_table for teles_cs
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>
| -rw-r--r-- | drivers/isdn/hisax/teles_cs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/isdn/hisax/teles_cs.c b/drivers/isdn/hisax/teles_cs.c index 63e8e20c17a8..107376ff5b9b 100644 --- a/drivers/isdn/hisax/teles_cs.c +++ b/drivers/isdn/hisax/teles_cs.c | |||
| @@ -489,6 +489,12 @@ static int teles_cs_event(event_t event, int priority, | |||
| 489 | return 0; | 489 | return 0; |
| 490 | } /* teles_cs_event */ | 490 | } /* teles_cs_event */ |
| 491 | 491 | ||
| 492 | static struct pcmcia_device_id teles_ids[] = { | ||
| 493 | PCMCIA_DEVICE_PROD_ID12("TELES", "S0/PC", 0x67b50eae, 0xe9e70119), | ||
| 494 | PCMCIA_DEVICE_NULL, | ||
| 495 | }; | ||
| 496 | MODULE_DEVICE_TABLE(pcmcia, teles_ids); | ||
| 497 | |||
| 492 | static struct pcmcia_driver teles_cs_driver = { | 498 | static struct pcmcia_driver teles_cs_driver = { |
| 493 | .owner = THIS_MODULE, | 499 | .owner = THIS_MODULE, |
| 494 | .drv = { | 500 | .drv = { |
| @@ -496,6 +502,7 @@ static struct pcmcia_driver teles_cs_driver = { | |||
| 496 | }, | 502 | }, |
| 497 | .attach = teles_attach, | 503 | .attach = teles_attach, |
| 498 | .detach = teles_detach, | 504 | .detach = teles_detach, |
| 505 | .id_table = teles_ids, | ||
| 499 | }; | 506 | }; |
| 500 | 507 | ||
| 501 | static int __init init_teles_cs(void) | 508 | static int __init init_teles_cs(void) |
