diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2020-11-13 15:02:11 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2020-11-23 10:31:05 +0100 |
commit | e83694a7b249de63beb1d8b45474b796dce3cd45 (patch) | |
tree | 5d36fd51a3c4274fae5be44775859234024d303b /arch/um/include | |
parent | 769dda58d1f647a45270db2f02efe2e2de856709 (diff) | |
download | linux-stable-e83694a7b249de63beb1d8b45474b796dce3cd45.tar.gz linux-stable-e83694a7b249de63beb1d8b45474b796dce3cd45.tar.bz2 linux-stable-e83694a7b249de63beb1d8b45474b796dce3cd45.zip |
um/irqstat: Get rid of the duplicated declarations
irq_cpustat_t and ack_bad_irq() are exactly the same as the asm-generic
ones.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Link: https://lore.kernel.org/r/20201113141733.156361337@linutronix.de
Diffstat (limited to 'arch/um/include')
-rw-r--r-- | arch/um/include/asm/hardirq.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/arch/um/include/asm/hardirq.h b/arch/um/include/asm/hardirq.h index b426796d26fd..52e2c36267a9 100644 --- a/arch/um/include/asm/hardirq.h +++ b/arch/um/include/asm/hardirq.h @@ -2,22 +2,7 @@ #ifndef __ASM_UM_HARDIRQ_H #define __ASM_UM_HARDIRQ_H -#include <linux/cache.h> -#include <linux/threads.h> - -typedef struct { - unsigned int __softirq_pending; -} ____cacheline_aligned irq_cpustat_t; - -#include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */ -#include <linux/irq.h> - -#ifndef ack_bad_irq -static inline void ack_bad_irq(unsigned int irq) -{ - printk(KERN_CRIT "unexpected IRQ trap at vector %02x\n", irq); -} -#endif +#include <asm-generic/hardirq.h> #define __ARCH_IRQ_EXIT_IRQS_DISABLED 1 |