diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2014-12-06 21:20:20 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-12-07 21:49:45 +0100 |
commit | 74faaf7aa64c76b60db0f5c994fd43a46be772ce (patch) | |
tree | aed1314ff9478dc3bdf4194515b17655e7f05015 /include | |
parent | 020c312658d61297ffe43b412441c69b1c36fb1b (diff) | |
download | linux-74faaf7aa64c76b60db0f5c994fd43a46be772ce.tar.bz2 |
genirq: Move irq_chip_write_msi_msg() helper to core
No point to expose this to the world. The only legitimate user is the
core code.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/irq.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 8badf34baf0f..33da579d727c 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h @@ -461,12 +461,6 @@ extern int irq_chip_set_affinity_parent(struct irq_data *data, bool force); #endif -static inline void irq_chip_write_msi_msg(struct irq_data *data, - struct msi_msg *msg) -{ - data->chip->irq_write_msi_msg(data, msg); -} - /* Handling of unhandled and spurious interrupts: */ extern void note_interrupt(unsigned int irq, struct irq_desc *desc, irqreturn_t action_ret); |