diff options
author | Ingo Molnar <mingo@kernel.org> | 2020-08-06 15:34:32 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2020-08-06 17:13:09 +0300 |
commit | 13c01139b17163c9b2aa543a9c39f8bbc875b625 (patch) | |
tree | 130043995a33a622a6a41661e25224c22a3f2df9 /drivers/iommu/intel | |
parent | a703f3633ff1d982bc4adfe7e0921bedb1701216 (diff) | |
download | linux-13c01139b17163c9b2aa543a9c39f8bbc875b625.tar.xz |
x86/headers: Remove APIC headers from <asm/smp.h>
The APIC headers are relatively complex and bring in additional
header dependencies - while smp.h is a relatively simple header
included from high level headers.
Remove the dependency and add in the missing #include's in .c
files where they gained it indirectly before.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/iommu/intel')
-rw-r--r-- | drivers/iommu/intel/irq_remapping.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iommu/intel/irq_remapping.c b/drivers/iommu/intel/irq_remapping.c index 9564d23d094f..3cf9d5706076 100644 --- a/drivers/iommu/intel/irq_remapping.c +++ b/drivers/iommu/intel/irq_remapping.c @@ -15,6 +15,7 @@ #include <linux/irqdomain.h> #include <linux/crash_dump.h> #include <asm/io_apic.h> +#include <asm/apic.h> #include <asm/smp.h> #include <asm/cpu.h> #include <asm/irq_remapping.h> |