31 lines
854 B
Diff
31 lines
854 B
Diff
From 3f28dfd8e44ba99ff99a4415078532621b7d94d5 Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
|
|
Date: Thu, 22 Dec 2016 17:28:33 +0100
|
|
Subject: [PATCH 167/365] arm: include definition for cpumask_t
|
|
|
|
This definition gets pulled in by other files. With the (later) split of
|
|
RCU and spinlock.h it won't compile anymore.
|
|
The split is done in ("rbtree: don't include the rcu header").
|
|
|
|
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
|
|
---
|
|
arch/arm/include/asm/irq.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/arch/arm/include/asm/irq.h b/arch/arm/include/asm/irq.h
|
|
index 61e1d089ce1a..0893b01e5669 100644
|
|
--- a/arch/arm/include/asm/irq.h
|
|
+++ b/arch/arm/include/asm/irq.h
|
|
@@ -22,6 +22,8 @@
|
|
#endif
|
|
|
|
#ifndef __ASSEMBLY__
|
|
+#include <linux/cpumask.h>
|
|
+
|
|
struct irqaction;
|
|
struct pt_regs;
|
|
|
|
--
|
|
2.28.0
|
|
|