diff options
Diffstat (limited to 'drivers/isdn/hisax/teles_cs.c')
-rw-r--r-- | drivers/isdn/hisax/teles_cs.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/isdn/hisax/teles_cs.c b/drivers/isdn/hisax/teles_cs.c index 107376ff5b9b..0ddef1bf778b 100644 --- a/drivers/isdn/hisax/teles_cs.c +++ b/drivers/isdn/hisax/teles_cs.c | |||
@@ -28,7 +28,6 @@ | |||
28 | #include <asm/io.h> | 28 | #include <asm/io.h> |
29 | #include <asm/system.h> | 29 | #include <asm/system.h> |
30 | 30 | ||
31 | #include <pcmcia/version.h> | ||
32 | #include <pcmcia/cs_types.h> | 31 | #include <pcmcia/cs_types.h> |
33 | #include <pcmcia/cs.h> | 32 | #include <pcmcia/cs.h> |
34 | #include <pcmcia/cistpl.h> | 33 | #include <pcmcia/cistpl.h> |
@@ -193,11 +192,6 @@ static dev_link_t *teles_attach(void) | |||
193 | link->next = dev_list; | 192 | link->next = dev_list; |
194 | dev_list = link; | 193 | dev_list = link; |
195 | client_reg.dev_info = &dev_info; | 194 | client_reg.dev_info = &dev_info; |
196 | client_reg.EventMask = | ||
197 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
198 | CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET | | ||
199 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
200 | client_reg.event_handler = &teles_cs_event; | ||
201 | client_reg.Version = 0x0210; | 195 | client_reg.Version = 0x0210; |
202 | client_reg.event_callback_args.client_data = link; | 196 | client_reg.event_callback_args.client_data = link; |
203 | ret = pcmcia_register_client(&link->handle, &client_reg); | 197 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -501,6 +495,7 @@ static struct pcmcia_driver teles_cs_driver = { | |||
501 | .name = "teles_cs", | 495 | .name = "teles_cs", |
502 | }, | 496 | }, |
503 | .attach = teles_attach, | 497 | .attach = teles_attach, |
498 | .event = teles_cs_event, | ||
504 | .detach = teles_detach, | 499 | .detach = teles_detach, |
505 | .id_table = teles_ids, | 500 | .id_table = teles_ids, |
506 | }; | 501 | }; |