aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/hw_irq.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2014-11-05 10:12:27 +0100
committerThomas Gleixner <tglx@linutronix.de>2014-12-16 14:08:16 +0100
commitf0e5bf758348e7205a33de50c894e75f9bc89714 (patch)
tree1a5b051b2e7ea50b381b7c2d35e09e19de26097f /arch/x86/include/asm/hw_irq.h
parentx86, irq: Move local APIC related code from io_apic.c into vector.c (diff)
downloadlinux-dev-f0e5bf758348e7205a33de50c894e75f9bc89714.tar.xz
linux-dev-f0e5bf758348e7205a33de50c894e75f9bc89714.zip
x86, irq: Make UP version of irq_complete_move() an inline stub
No point for having an empty real function. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/include/asm/hw_irq.h')
-rw-r--r--arch/x86/include/asm/hw_irq.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/include/asm/hw_irq.h b/arch/x86/include/asm/hw_irq.h
index ef50db16bb44..a7235777a478 100644
--- a/arch/x86/include/asm/hw_irq.h
+++ b/arch/x86/include/asm/hw_irq.h
@@ -144,10 +144,11 @@ extern void clear_irq_vector(int irq, struct irq_cfg *cfg);
extern void setup_vector_irq(int cpu);
#ifdef CONFIG_SMP
extern void send_cleanup_vector(struct irq_cfg *);
+extern void irq_complete_move(struct irq_cfg *cfg);
#else
static inline void send_cleanup_vector(struct irq_cfg *c) { }
+static inline void irq_complete_move(struct irq_cfg *c) { }
#endif
-extern void irq_complete_move(struct irq_cfg *cfg);
extern int apic_retrigger_irq(struct irq_data *data);
extern void apic_ack_edge(struct irq_data *data);