diff options
Diffstat (limited to 'include/pcmcia/ds.h')
| -rw-r--r-- | include/pcmcia/ds.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index b4429f78b9c3..c180165fbd3e 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h | |||
| @@ -184,9 +184,16 @@ int pcmcia_access_configuration_register(struct pcmcia_device *p_dev, | |||
| 184 | /* device configuration */ | 184 | /* device configuration */ |
| 185 | int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req); | 185 | int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req); |
| 186 | 186 | ||
| 187 | int __must_check __deprecated | 187 | int __must_check |
| 188 | pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, | 188 | __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, |
| 189 | irq_handler_t handler); | 189 | irq_handler_t handler); |
| 190 | static inline __must_check __deprecated int | ||
| 191 | pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, | ||
| 192 | irq_handler_t handler) | ||
| 193 | { | ||
| 194 | return __pcmcia_request_exclusive_irq(p_dev, handler); | ||
| 195 | } | ||
| 196 | |||
| 190 | int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev, | 197 | int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev, |
| 191 | irq_handler_t handler); | 198 | irq_handler_t handler); |
| 192 | 199 | ||
