aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/pcmcia
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2018-08-18 12:30:42 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2018-08-18 12:30:42 -0700
commit307797159ac25fe5a2048bf5c6a5718298edca57 (patch)
treecc45222a2de182292a65f6f17a959d3c3a4d4ec1 /include/pcmcia
parentdeprecate the '__deprecated' attribute warnings entirely and for good (diff)
downloadwireguard-linux-307797159ac25fe5a2048bf5c6a5718298edca57.tar.xz
wireguard-linux-307797159ac25fe5a2048bf5c6a5718298edca57.zip
pcmcia: remove long deprecated pcmcia_request_exclusive_irq() function
This function was created as a deprecated fallback case back in 2010 by commit eb14120f743d ("pcmcia: re-work pcmcia_request_irq()") for legacy cases. Actual in-kernel users haven't been around for a long while. The last in-kernel user was apparently removed four years ago by commit 5f5316fcd08e ("am2150: Update nmclan_cs.c to use update PCMCIA API"). Just remove it entirely. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/pcmcia')
-rw-r--r--include/pcmcia/ds.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h
index 2d56e428506c..3037157855f0 100644
--- a/include/pcmcia/ds.h
+++ b/include/pcmcia/ds.h
@@ -206,16 +206,6 @@ int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val);
/* device configuration */
int pcmcia_request_io(struct pcmcia_device *p_dev);
-int __must_check
-__pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
- irq_handler_t handler);
-static inline __must_check __deprecated int
-pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
- irq_handler_t handler)
-{
- return __pcmcia_request_exclusive_irq(p_dev, handler);
-}
-
int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev,
irq_handler_t handler);