summaryrefslogtreecommitdiff
path: root/arch/x86
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2020-12-10 22:25:37 +0300
committerThomas Gleixner <tglx@linutronix.de>2020-12-15 18:19:30 +0300
commita313357e704f2617f298333e3e617a38b1719760 (patch)
tree8892748e6d35f6d6aa0a60fbc6fac6930ca5083b /arch/x86
parent3c41e57a1e168d879e923c5583adeae47eec9f64 (diff)
downloadlinux-a313357e704f2617f298333e3e617a38b1719760.tar.xz
genirq: Move irq_has_action() into core code
This function uses irq_to_desc() and is going to be used by modules to replace the open coded irq_to_desc() (ab)usage. The final goal is to remove the export of irq_to_desc() so driver cannot fiddle with it anymore. Move it into the core code and fixup the usage sites to include the proper header. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/r/20201210194042.548936472@linutronix.de
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/topology.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/topology.c b/arch/x86/kernel/topology.c
index 0a2ec801b63f..f5477eab5692 100644
--- a/arch/x86/kernel/topology.c
+++ b/arch/x86/kernel/topology.c
@@ -25,6 +25,7 @@
*
* Send feedback to <colpatch@us.ibm.com>
*/
+#include <linux/interrupt.h>
#include <linux/nodemask.h>
#include <linux/export.h>
#include <linux/mmzone.h>