diff options
Diffstat (limited to 'drivers/ide/legacy/ide-cs.c')
-rw-r--r-- | drivers/ide/legacy/ide-cs.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/ide/legacy/ide-cs.c b/drivers/ide/legacy/ide-cs.c index 978d27d6452d..aac59751e1b4 100644 --- a/drivers/ide/legacy/ide-cs.c +++ b/drivers/ide/legacy/ide-cs.c | |||
@@ -46,7 +46,6 @@ | |||
46 | #include <asm/io.h> | 46 | #include <asm/io.h> |
47 | #include <asm/system.h> | 47 | #include <asm/system.h> |
48 | 48 | ||
49 | #include <pcmcia/version.h> | ||
50 | #include <pcmcia/cs_types.h> | 49 | #include <pcmcia/cs_types.h> |
51 | #include <pcmcia/cs.h> | 50 | #include <pcmcia/cs.h> |
52 | #include <pcmcia/cistpl.h> | 51 | #include <pcmcia/cistpl.h> |
@@ -134,11 +133,6 @@ static dev_link_t *ide_attach(void) | |||
134 | link->next = dev_list; | 133 | link->next = dev_list; |
135 | dev_list = link; | 134 | dev_list = link; |
136 | client_reg.dev_info = &dev_info; | 135 | client_reg.dev_info = &dev_info; |
137 | client_reg.EventMask = | ||
138 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
139 | CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET | | ||
140 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
141 | client_reg.event_handler = &ide_event; | ||
142 | client_reg.Version = 0x0210; | 136 | client_reg.Version = 0x0210; |
143 | client_reg.event_callback_args.client_data = link; | 137 | client_reg.event_callback_args.client_data = link; |
144 | ret = pcmcia_register_client(&link->handle, &client_reg); | 138 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -497,6 +491,7 @@ static struct pcmcia_driver ide_cs_driver = { | |||
497 | .name = "ide-cs", | 491 | .name = "ide-cs", |
498 | }, | 492 | }, |
499 | .attach = ide_attach, | 493 | .attach = ide_attach, |
494 | .event = ide_event, | ||
500 | .detach = ide_detach, | 495 | .detach = ide_detach, |
501 | .id_table = ide_ids, | 496 | .id_table = ide_ids, |
502 | }; | 497 | }; |