diff options
author | Richard Weinberger <richard@nod.at> | 2012-04-17 22:37:16 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2012-05-21 21:09:38 +0200 |
commit | 875682648b89a3ebc06176d60dc280f810647839 (patch) | |
tree | 515e2e1d69b18954b6e750e5e1aa042cc29c6bee /include/linux/irq.h | |
parent | 985a94a96d294fe6d2c72d013de09b81b637ed58 (diff) | |
download | linux-875682648b89a3ebc06176d60dc280f810647839.tar.gz linux-875682648b89a3ebc06176d60dc280f810647839.tar.bz2 linux-875682648b89a3ebc06176d60dc280f810647839.zip |
irq: Remove irq_chip->release()
As it's only user (UML) does no longer need it we can get
rid of it.
Signed-off-by: Richard Weinberger <richard@nod.at>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r-- | include/linux/irq.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index b27cfcfd3a59..61f5cec031e0 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h @@ -335,11 +335,6 @@ struct irq_chip { void (*irq_print_chip)(struct irq_data *data, struct seq_file *p); unsigned long flags; - - /* Currently used only by UML, might disappear one day.*/ -#ifdef CONFIG_IRQ_RELEASE_METHOD - void (*release)(unsigned int irq, void *dev_id); -#endif }; /* |