Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fixlets from Thomas Gleixner:
"Two trivial fixes which add missing header fileas and forward
declarations so the code will compile even when the magic include
chains are different"

* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqchip/gic-v3: Add missing include for barrier.h
irqchip/gic-v3: Add missing struct device_node declaration

Changed files
+3
arch
arm
include
arm64
include
include
linux
irqchip
+1
arch/arm/include/asm/arch_gicv3.h
··· 21 21 #ifndef __ASSEMBLY__ 22 22 23 23 #include <linux/io.h> 24 + #include <asm/barrier.h> 24 25 25 26 #define __ACCESS_CP15(CRn, Op1, CRm, Op2) p15, Op1, %0, CRn, CRm, Op2 26 27 #define __ACCESS_CP15_64(Op1, CRm) p15, Op1, %Q0, %R0, CRm
+1
arch/arm64/include/asm/arch_gicv3.h
··· 77 77 #ifndef __ASSEMBLY__ 78 78 79 79 #include <linux/stringify.h> 80 + #include <asm/barrier.h> 80 81 81 82 /* 82 83 * Low-level accessors
+1
include/linux/irqchip/arm-gic-v3.h
··· 330 330 }; 331 331 332 332 struct irq_domain; 333 + struct device_node; 333 334 int its_cpu_init(void); 334 335 int its_init(struct device_node *node, struct rdists *rdists, 335 336 struct irq_domain *domain);