diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2009-10-18 18:07:39 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2009-11-08 12:23:11 -0500 |
commit | 18a7a19b37838789452e0bd2855a51475628b971 (patch) | |
tree | a63cbd6b291f81838ac49ed59982e0f2f885610a /include/pcmcia | |
parent | 18b61b97294dad74dd00a1aa8efed0cfacb95aff (diff) |
pcmcia: remove pcmcia_get_{first,next}_tuple()
Remove the pcmcia_get_{first,next}_tuple() calls no longer needed by
(current) pcmcia device drivers.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'include/pcmcia')
-rw-r--r-- | include/pcmcia/ds.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index 2eb6e24d1a6b..6c37d4ed7832 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h | |||
@@ -229,21 +229,6 @@ int pcmcia_reset_card(struct pcmcia_socket *skt); | |||
229 | int pcmcia_access_configuration_register(struct pcmcia_device *p_dev, | 229 | int pcmcia_access_configuration_register(struct pcmcia_device *p_dev, |
230 | conf_reg_t *reg); | 230 | conf_reg_t *reg); |
231 | 231 | ||
232 | /* deprecated -- do not use in drivers. */ | ||
233 | int pccard_get_first_tuple(struct pcmcia_socket *s, unsigned int function, | ||
234 | tuple_t *tuple); | ||
235 | #define pcmcia_get_first_tuple(p_dev, tuple) \ | ||
236 | pccard_get_first_tuple(p_dev->socket, p_dev->func, tuple) | ||
237 | |||
238 | int pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int function, | ||
239 | tuple_t *tuple); | ||
240 | #define pcmcia_get_next_tuple(p_dev, tuple) \ | ||
241 | pccard_get_next_tuple(p_dev->socket, p_dev->func, tuple) | ||
242 | |||
243 | int pccard_get_tuple_data(struct pcmcia_socket *s, tuple_t *tuple); | ||
244 | #define pcmcia_get_tuple_data(p_dev, tuple) \ | ||
245 | pccard_get_tuple_data(p_dev->socket, tuple) | ||
246 | |||
247 | /* device configuration */ | 232 | /* device configuration */ |
248 | int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req); | 233 | int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req); |
249 | int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req); | 234 | int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req); |