diff options
Diffstat (limited to 'drivers/usb/host/sl811_cs.c')
-rw-r--r-- | drivers/usb/host/sl811_cs.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/usb/host/sl811_cs.c b/drivers/usb/host/sl811_cs.c index 269d8ef01459..38aebe361ca1 100644 --- a/drivers/usb/host/sl811_cs.c +++ b/drivers/usb/host/sl811_cs.c | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/timer.h> | 20 | #include <linux/timer.h> |
21 | #include <linux/ioport.h> | 21 | #include <linux/ioport.h> |
22 | 22 | ||
23 | #include <pcmcia/version.h> | ||
24 | #include <pcmcia/cs_types.h> | 23 | #include <pcmcia/cs_types.h> |
25 | #include <pcmcia/cs.h> | 24 | #include <pcmcia/cs.h> |
26 | #include <pcmcia/cistpl.h> | 25 | #include <pcmcia/cistpl.h> |
@@ -389,11 +388,6 @@ static dev_link_t *sl811_cs_attach(void) | |||
389 | dev_list = link; | 388 | dev_list = link; |
390 | client_reg.dev_info = (dev_info_t *) &driver_name; | 389 | client_reg.dev_info = (dev_info_t *) &driver_name; |
391 | client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE; | 390 | client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE; |
392 | client_reg.EventMask = | ||
393 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
394 | CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET | | ||
395 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
396 | client_reg.event_handler = &sl811_cs_event; | ||
397 | client_reg.Version = 0x0210; | 391 | client_reg.Version = 0x0210; |
398 | client_reg.event_callback_args.client_data = link; | 392 | client_reg.event_callback_args.client_data = link; |
399 | ret = pcmcia_register_client(&link->handle, &client_reg); | 393 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -418,6 +412,7 @@ static struct pcmcia_driver sl811_cs_driver = { | |||
418 | .name = (char *)driver_name, | 412 | .name = (char *)driver_name, |
419 | }, | 413 | }, |
420 | .attach = sl811_cs_attach, | 414 | .attach = sl811_cs_attach, |
415 | .event = sl811_cs_event, | ||
421 | .detach = sl811_cs_detach, | 416 | .detach = sl811_cs_detach, |
422 | .id_table = sl811_ids, | 417 | .id_table = sl811_ids, |
423 | }; | 418 | }; |