diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2005-06-27 19:28:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-27 21:03:16 -0400 |
commit | 02ae38cfc5a49dde1ce979e710eec1d02279cb53 (patch) | |
tree | 361abd93bcfc0930925d6cfef5f79bd68f510b48 /drivers/isdn | |
parent | 88eca2e526d087797a529aad478e5e6b42188415 (diff) |
[PATCH] pcmcia: id_table for elsa_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>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/hisax/elsa_cs.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/isdn/hisax/elsa_cs.c b/drivers/isdn/hisax/elsa_cs.c index bfc013225f46..9146be547044 100644 --- a/drivers/isdn/hisax/elsa_cs.c +++ b/drivers/isdn/hisax/elsa_cs.c | |||
@@ -508,6 +508,13 @@ static int elsa_cs_event(event_t event, int priority, | |||
508 | return 0; | 508 | return 0; |
509 | } /* elsa_cs_event */ | 509 | } /* elsa_cs_event */ |
510 | 510 | ||
511 | static struct pcmcia_device_id elsa_ids[] = { | ||
512 | PCMCIA_DEVICE_PROD_ID12("ELSA AG (Aachen, Germany)", "MicroLink ISDN/MC ", 0x983de2c4, 0x333ba257), | ||
513 | PCMCIA_DEVICE_PROD_ID12("ELSA GmbH, Aachen", "MicroLink ISDN/MC ", 0x639e5718, 0x333ba257), | ||
514 | PCMCIA_DEVICE_NULL | ||
515 | }; | ||
516 | MODULE_DEVICE_TABLE(pcmcia, elsa_ids); | ||
517 | |||
511 | static struct pcmcia_driver elsa_cs_driver = { | 518 | static struct pcmcia_driver elsa_cs_driver = { |
512 | .owner = THIS_MODULE, | 519 | .owner = THIS_MODULE, |
513 | .drv = { | 520 | .drv = { |
@@ -515,6 +522,7 @@ static struct pcmcia_driver elsa_cs_driver = { | |||
515 | }, | 522 | }, |
516 | .attach = elsa_cs_attach, | 523 | .attach = elsa_cs_attach, |
517 | .detach = elsa_cs_detach, | 524 | .detach = elsa_cs_detach, |
525 | .id_table = elsa_ids, | ||
518 | }; | 526 | }; |
519 | 527 | ||
520 | static int __init init_elsa_cs(void) | 528 | static int __init init_elsa_cs(void) |