diff options
Diffstat (limited to 'drivers/telephony/ixj_pcmcia.c')
-rw-r--r-- | drivers/telephony/ixj_pcmcia.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/telephony/ixj_pcmcia.c b/drivers/telephony/ixj_pcmcia.c index ce5ebfe4af2b..57c0c6e3fbed 100644 --- a/drivers/telephony/ixj_pcmcia.c +++ b/drivers/telephony/ixj_pcmcia.c | |||
@@ -9,7 +9,6 @@ | |||
9 | #include <linux/errno.h> /* error codes */ | 9 | #include <linux/errno.h> /* error codes */ |
10 | #include <linux/slab.h> | 10 | #include <linux/slab.h> |
11 | 11 | ||
12 | #include <pcmcia/version.h> | ||
13 | #include <pcmcia/cs_types.h> | 12 | #include <pcmcia/cs_types.h> |
14 | #include <pcmcia/cs.h> | 13 | #include <pcmcia/cs.h> |
15 | #include <pcmcia/cistpl.h> | 14 | #include <pcmcia/cistpl.h> |
@@ -69,11 +68,6 @@ static dev_link_t *ixj_attach(void) | |||
69 | link->next = dev_list; | 68 | link->next = dev_list; |
70 | dev_list = link; | 69 | dev_list = link; |
71 | client_reg.dev_info = &dev_info; | 70 | client_reg.dev_info = &dev_info; |
72 | client_reg.EventMask = | ||
73 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
74 | CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET | | ||
75 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
76 | client_reg.event_handler = &ixj_event; | ||
77 | client_reg.Version = 0x0210; | 71 | client_reg.Version = 0x0210; |
78 | client_reg.event_callback_args.client_data = link; | 72 | client_reg.event_callback_args.client_data = link; |
79 | ret = pcmcia_register_client(&link->handle, &client_reg); | 73 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -307,6 +301,7 @@ static struct pcmcia_driver ixj_driver = { | |||
307 | .name = "ixj_cs", | 301 | .name = "ixj_cs", |
308 | }, | 302 | }, |
309 | .attach = ixj_attach, | 303 | .attach = ixj_attach, |
304 | .event = ixj_event, | ||
310 | .detach = ixj_detach, | 305 | .detach = ixj_detach, |
311 | .id_table = ixj_ids, | 306 | .id_table = ixj_ids, |
312 | }; | 307 | }; |