mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 17:05:18 +07:00
e851b58cb7
This patch uses the generic irqchip_init() function for initialising the interrupt controller on arm64. It also adds several definitions required by the ARM GIC irqchip driver but does not enable ARM_GIC yet. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
10 lines
195 B
C
10 lines
195 B
C
#ifndef __ASM_IRQ_H
|
|
#define __ASM_IRQ_H
|
|
|
|
#include <asm-generic/irq.h>
|
|
|
|
extern void (*handle_arch_irq)(struct pt_regs *);
|
|
extern void set_handle_irq(void (*handle_irq)(struct pt_regs *));
|
|
|
|
#endif
|