mirror of
https://github.com/torvalds/linux.git
synced 2025-04-09 14:45:27 +00:00

irq_cpustat_t is exactly the same as the asm-generic one. Define ack_bad_irq so the generic header does not emit the generic version of it. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Frederic Weisbecker <frederic@kernel.org> Reviewed-by: Valentin Schneider <valentin.schneider@arm.com> Link: https://lore.kernel.org/r/20201113141733.276505871@linutronix.de
13 lines
246 B
C
13 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_HARDIRQ_H
|
|
#define __ASM_HARDIRQ_H
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#define __ARCH_IRQ_EXIT_IRQS_DISABLED 1
|
|
#define ack_bad_irq ack_bad_irq
|
|
|
|
#include <asm-generic/hardirq.h>
|
|
|
|
#endif /* __ASM_HARDIRQ_H */
|