diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2005-06-27 19:28:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-27 21:03:13 -0400 |
commit | 476835afd7fefa353e932e160c14effc67e2ba6e (patch) | |
tree | 0a6d64fddfdb7ebe9069911df2c637fabfb79c0e /drivers/parport | |
parent | f8f7cc03bcb52e3f4894635aa1e7b9fca2f9ec67 (diff) |
[PATCH] pcmcia: id_table for parport_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/parport')
-rw-r--r-- | drivers/parport/parport_cs.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/parport/parport_cs.c b/drivers/parport/parport_cs.c index a3fa8185af2a..ff45662c4f7c 100644 --- a/drivers/parport/parport_cs.c +++ b/drivers/parport/parport_cs.c | |||
@@ -373,6 +373,13 @@ int parport_event(event_t event, int priority, | |||
373 | return 0; | 373 | return 0; |
374 | } /* parport_event */ | 374 | } /* parport_event */ |
375 | 375 | ||
376 | static struct pcmcia_device_id parport_ids[] = { | ||
377 | PCMCIA_DEVICE_FUNC_ID(3), | ||
378 | PCMCIA_DEVICE_MANF_CARD(0x0137, 0x0003), | ||
379 | PCMCIA_DEVICE_NULL | ||
380 | }; | ||
381 | MODULE_DEVICE_TABLE(pcmcia, parport_ids); | ||
382 | |||
376 | static struct pcmcia_driver parport_cs_driver = { | 383 | static struct pcmcia_driver parport_cs_driver = { |
377 | .owner = THIS_MODULE, | 384 | .owner = THIS_MODULE, |
378 | .drv = { | 385 | .drv = { |
@@ -380,6 +387,8 @@ static struct pcmcia_driver parport_cs_driver = { | |||
380 | }, | 387 | }, |
381 | .attach = parport_attach, | 388 | .attach = parport_attach, |
382 | .detach = parport_detach, | 389 | .detach = parport_detach, |
390 | .id_table = parport_ids, | ||
391 | |||
383 | }; | 392 | }; |
384 | 393 | ||
385 | static int __init init_parport_cs(void) | 394 | static int __init init_parport_cs(void) |