]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/arm64/include/asm/irq.h
arm64: fix a migrating irq bug when hotplug cpu
[mirror_ubuntu-bionic-kernel.git] / arch / arm64 / include / asm / irq.h
1 #ifndef __ASM_IRQ_H
2 #define __ASM_IRQ_H
3
4 #include <linux/irqchip/arm-gic-acpi.h>
5
6 #include <asm-generic/irq.h>
7
8 struct pt_regs;
9
10 extern void set_handle_irq(void (*handle_irq)(struct pt_regs *));
11
12 static inline void acpi_irq_init(void)
13 {
14 /*
15 * Hardcode ACPI IRQ chip initialization to GICv2 for now.
16 * Proper irqchip infrastructure will be implemented along with
17 * incoming GICv2m|GICv3|ITS bits.
18 */
19 acpi_gic_init();
20 }
21 #define acpi_irq_init acpi_irq_init
22
23 #endif