diff options
Diffstat (limited to 'drivers/scsi/pcmcia/aha152x_stub.c')
-rw-r--r-- | drivers/scsi/pcmcia/aha152x_stub.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/scsi/pcmcia/aha152x_stub.c b/drivers/scsi/pcmcia/aha152x_stub.c index f1f6bf596dc9..7c5306499832 100644 --- a/drivers/scsi/pcmcia/aha152x_stub.c +++ b/drivers/scsi/pcmcia/aha152x_stub.c | |||
@@ -50,7 +50,6 @@ | |||
50 | #include <scsi/scsi_host.h> | 50 | #include <scsi/scsi_host.h> |
51 | #include "aha152x.h" | 51 | #include "aha152x.h" |
52 | 52 | ||
53 | #include <pcmcia/version.h> | ||
54 | #include <pcmcia/cs_types.h> | 53 | #include <pcmcia/cs_types.h> |
55 | #include <pcmcia/cs.h> | 54 | #include <pcmcia/cs.h> |
56 | #include <pcmcia/cistpl.h> | 55 | #include <pcmcia/cistpl.h> |
@@ -134,11 +133,6 @@ static dev_link_t *aha152x_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.event_handler = &aha152x_event; | ||
138 | client_reg.EventMask = | ||
139 | CS_EVENT_RESET_REQUEST | CS_EVENT_CARD_RESET | | ||
140 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
141 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
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); |
@@ -334,6 +328,7 @@ static struct pcmcia_driver aha152x_cs_driver = { | |||
334 | .name = "aha152x_cs", | 328 | .name = "aha152x_cs", |
335 | }, | 329 | }, |
336 | .attach = aha152x_attach, | 330 | .attach = aha152x_attach, |
331 | .event = aha152x_event, | ||
337 | .detach = aha152x_detach, | 332 | .detach = aha152x_detach, |
338 | .id_table = aha152x_ids, | 333 | .id_table = aha152x_ids, |
339 | }; | 334 | }; |