diff options
Diffstat (limited to 'drivers/pcmcia/pcmcia_compat.c')
-rw-r--r-- | drivers/pcmcia/pcmcia_compat.c | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/drivers/pcmcia/pcmcia_compat.c b/drivers/pcmcia/pcmcia_compat.c deleted file mode 100644 index ebb161c4f819..000000000000 --- a/drivers/pcmcia/pcmcia_compat.c +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | /* | ||
2 | * PCMCIA 16-bit compatibility functions | ||
3 | * | ||
4 | * The initial developer of the original code is David A. Hinds | ||
5 | * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds | ||
6 | * are Copyright (C) 1999 David A. Hinds. All Rights Reserved. | ||
7 | * | ||
8 | * Copyright (C) 2004 Dominik Brodowski | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License version 2 as | ||
12 | * published by the Free Software Foundation. | ||
13 | * | ||
14 | */ | ||
15 | |||
16 | #include <linux/config.h> | ||
17 | #include <linux/module.h> | ||
18 | #include <linux/init.h> | ||
19 | |||
20 | #define IN_CARD_SERVICES | ||
21 | #include <pcmcia/cs_types.h> | ||
22 | #include <pcmcia/cs.h> | ||
23 | #include <pcmcia/bulkmem.h> | ||
24 | #include <pcmcia/cistpl.h> | ||
25 | #include <pcmcia/ds.h> | ||
26 | #include <pcmcia/ss.h> | ||
27 | |||
28 | #include "cs_internal.h" | ||
29 | |||
30 | int pcmcia_get_first_tuple(struct pcmcia_device *p_dev, tuple_t *tuple) | ||
31 | { | ||
32 | return pccard_get_first_tuple(p_dev->socket, p_dev->func, tuple); | ||
33 | } | ||
34 | EXPORT_SYMBOL(pcmcia_get_first_tuple); | ||
35 | |||
36 | int pcmcia_get_next_tuple(struct pcmcia_device *p_dev, tuple_t *tuple) | ||
37 | { | ||
38 | return pccard_get_next_tuple(p_dev->socket, p_dev->func, tuple); | ||
39 | } | ||
40 | EXPORT_SYMBOL(pcmcia_get_next_tuple); | ||
41 | |||
42 | int pcmcia_get_tuple_data(struct pcmcia_device *p_dev, tuple_t *tuple) | ||
43 | { | ||
44 | return pccard_get_tuple_data(p_dev->socket, tuple); | ||
45 | } | ||
46 | EXPORT_SYMBOL(pcmcia_get_tuple_data); | ||
47 | |||
48 | int pcmcia_parse_tuple(struct pcmcia_device *p_dev, tuple_t *tuple, cisparse_t *parse) | ||
49 | { | ||
50 | return pccard_parse_tuple(tuple, parse); | ||
51 | } | ||
52 | EXPORT_SYMBOL(pcmcia_parse_tuple); | ||
53 | |||
54 | int pcmcia_validate_cis(struct pcmcia_device *p_dev, cisinfo_t *info) | ||
55 | { | ||
56 | return pccard_validate_cis(p_dev->socket, p_dev->func, info); | ||
57 | } | ||
58 | EXPORT_SYMBOL(pcmcia_validate_cis); | ||
59 | |||
60 | |||
61 | int pcmcia_reset_card(struct pcmcia_device *p_dev, client_req_t *req) | ||
62 | { | ||
63 | return pccard_reset_card(p_dev->socket); | ||
64 | } | ||
65 | EXPORT_SYMBOL(pcmcia_reset_card); | ||