diff options
-rw-r--r-- | arch/ia64/include/asm/irq_remapping.h (renamed from arch/ia64/include/asm/intr_remapping.h) | 0 | ||||
-rw-r--r-- | arch/x86/include/asm/irq_remapping.h (renamed from arch/x86/include/asm/intr_remapping.h) | 6 | ||||
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/apic/io_apic.c | 2 | ||||
-rw-r--r-- | drivers/iommu/Makefile | 2 | ||||
-rw-r--r-- | drivers/iommu/dmar.c | 2 | ||||
-rw-r--r-- | drivers/iommu/intel-iommu.c | 2 | ||||
-rw-r--r-- | drivers/iommu/intel_irq_remapping.c (renamed from drivers/iommu/intel_intr_remapping.c) | 4 | ||||
-rw-r--r-- | drivers/iommu/irq_remapping.c (renamed from drivers/iommu/intr_remapping.c) | 2 | ||||
-rw-r--r-- | drivers/iommu/irq_remapping.h (renamed from drivers/iommu/intr_remapping.h) | 6 |
10 files changed, 14 insertions, 14 deletions
diff --git a/arch/ia64/include/asm/intr_remapping.h b/arch/ia64/include/asm/irq_remapping.h index a8687b1d8906..a8687b1d8906 100644 --- a/arch/ia64/include/asm/intr_remapping.h +++ b/arch/ia64/include/asm/irq_remapping.h | |||
diff --git a/arch/x86/include/asm/intr_remapping.h b/arch/x86/include/asm/irq_remapping.h index f9cbbcb2956e..dcb0c7231028 100644 --- a/arch/x86/include/asm/intr_remapping.h +++ b/arch/x86/include/asm/irq_remapping.h | |||
@@ -19,8 +19,8 @@ | |||
19 | * the x86 interrupt management code. | 19 | * the x86 interrupt management code. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifndef __X86_INTR_REMAPPING_H | 22 | #ifndef __X86_IRQ_REMAPPING_H |
23 | #define __X86_INTR_REMAPPING_H | 23 | #define __X86_IRQ_REMAPPING_H |
24 | 24 | ||
25 | #ifdef CONFIG_IRQ_REMAP | 25 | #ifdef CONFIG_IRQ_REMAP |
26 | 26 | ||
@@ -100,4 +100,4 @@ static inline int setup_hpet_msi_remapped(unsigned int irq, unsigned int id) | |||
100 | } | 100 | } |
101 | #endif /* CONFIG_IRQ_REMAP */ | 101 | #endif /* CONFIG_IRQ_REMAP */ |
102 | 102 | ||
103 | #endif /* __X86_INTR_REMAPPING_H */ | 103 | #endif /* __X86_IRQ_REMAPPING_H */ |
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index c02c666c4628..3722179a49db 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
@@ -35,7 +35,7 @@ | |||
35 | #include <linux/smp.h> | 35 | #include <linux/smp.h> |
36 | #include <linux/mm.h> | 36 | #include <linux/mm.h> |
37 | 37 | ||
38 | #include <asm/intr_remapping.h> | 38 | #include <asm/irq_remapping.h> |
39 | #include <asm/perf_event.h> | 39 | #include <asm/perf_event.h> |
40 | #include <asm/x86_init.h> | 40 | #include <asm/x86_init.h> |
41 | #include <asm/pgalloc.h> | 41 | #include <asm/pgalloc.h> |
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c index abbbcd4d1d71..ef0648cd7084 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c | |||
@@ -57,7 +57,7 @@ | |||
57 | #include <asm/msidef.h> | 57 | #include <asm/msidef.h> |
58 | #include <asm/hypertransport.h> | 58 | #include <asm/hypertransport.h> |
59 | #include <asm/setup.h> | 59 | #include <asm/setup.h> |
60 | #include <asm/intr_remapping.h> | 60 | #include <asm/irq_remapping.h> |
61 | #include <asm/hpet.h> | 61 | #include <asm/hpet.h> |
62 | #include <asm/hw_irq.h> | 62 | #include <asm/hw_irq.h> |
63 | 63 | ||
diff --git a/drivers/iommu/Makefile b/drivers/iommu/Makefile index 823e1cf8708f..3e5e82ae9f0d 100644 --- a/drivers/iommu/Makefile +++ b/drivers/iommu/Makefile | |||
@@ -4,7 +4,7 @@ obj-$(CONFIG_AMD_IOMMU) += amd_iommu.o amd_iommu_init.o | |||
4 | obj-$(CONFIG_AMD_IOMMU_V2) += amd_iommu_v2.o | 4 | obj-$(CONFIG_AMD_IOMMU_V2) += amd_iommu_v2.o |
5 | obj-$(CONFIG_DMAR_TABLE) += dmar.o | 5 | obj-$(CONFIG_DMAR_TABLE) += dmar.o |
6 | obj-$(CONFIG_INTEL_IOMMU) += iova.o intel-iommu.o | 6 | obj-$(CONFIG_INTEL_IOMMU) += iova.o intel-iommu.o |
7 | obj-$(CONFIG_IRQ_REMAP) += intel_intr_remapping.o intr_remapping.o | 7 | obj-$(CONFIG_IRQ_REMAP) += intel_irq_remapping.o irq_remapping.o |
8 | obj-$(CONFIG_OMAP_IOMMU) += omap-iommu.o | 8 | obj-$(CONFIG_OMAP_IOMMU) += omap-iommu.o |
9 | obj-$(CONFIG_OMAP_IOVMM) += omap-iovmm.o | 9 | obj-$(CONFIG_OMAP_IOVMM) += omap-iovmm.o |
10 | obj-$(CONFIG_OMAP_IOMMU_DEBUG) += omap-iommu-debug.o | 10 | obj-$(CONFIG_OMAP_IOMMU_DEBUG) += omap-iommu-debug.o |
diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c index ee74f698eef8..5ef65cf66152 100644 --- a/drivers/iommu/dmar.c +++ b/drivers/iommu/dmar.c | |||
@@ -36,7 +36,7 @@ | |||
36 | #include <linux/tboot.h> | 36 | #include <linux/tboot.h> |
37 | #include <linux/dmi.h> | 37 | #include <linux/dmi.h> |
38 | #include <linux/slab.h> | 38 | #include <linux/slab.h> |
39 | #include <asm/intr_remapping.h> | 39 | #include <asm/irq_remapping.h> |
40 | #include <asm/iommu_table.h> | 40 | #include <asm/iommu_table.h> |
41 | 41 | ||
42 | #define PREFIX "DMAR: " | 42 | #define PREFIX "DMAR: " |
diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c index cef5b8226f3d..bf2fbaad5e22 100644 --- a/drivers/iommu/intel-iommu.c +++ b/drivers/iommu/intel-iommu.c | |||
@@ -42,7 +42,7 @@ | |||
42 | #include <linux/dmi.h> | 42 | #include <linux/dmi.h> |
43 | #include <linux/pci-ats.h> | 43 | #include <linux/pci-ats.h> |
44 | #include <linux/memblock.h> | 44 | #include <linux/memblock.h> |
45 | #include <asm/intr_remapping.h> | 45 | #include <asm/irq_remapping.h> |
46 | #include <asm/cacheflush.h> | 46 | #include <asm/cacheflush.h> |
47 | #include <asm/iommu.h> | 47 | #include <asm/iommu.h> |
48 | 48 | ||
diff --git a/drivers/iommu/intel_intr_remapping.c b/drivers/iommu/intel_irq_remapping.c index efeb601c782f..b4d39507681a 100644 --- a/drivers/iommu/intel_intr_remapping.c +++ b/drivers/iommu/intel_irq_remapping.c | |||
@@ -11,11 +11,11 @@ | |||
11 | #include <asm/cpu.h> | 11 | #include <asm/cpu.h> |
12 | #include <linux/intel-iommu.h> | 12 | #include <linux/intel-iommu.h> |
13 | #include <acpi/acpi.h> | 13 | #include <acpi/acpi.h> |
14 | #include <asm/intr_remapping.h> | 14 | #include <asm/irq_remapping.h> |
15 | #include <asm/pci-direct.h> | 15 | #include <asm/pci-direct.h> |
16 | #include <asm/msidef.h> | 16 | #include <asm/msidef.h> |
17 | 17 | ||
18 | #include "intr_remapping.h" | 18 | #include "irq_remapping.h" |
19 | 19 | ||
20 | struct ioapic_scope { | 20 | struct ioapic_scope { |
21 | struct intel_iommu *iommu; | 21 | struct intel_iommu *iommu; |
diff --git a/drivers/iommu/intr_remapping.c b/drivers/iommu/irq_remapping.c index 523a7b3a1205..1cf350e02da8 100644 --- a/drivers/iommu/intr_remapping.c +++ b/drivers/iommu/irq_remapping.c | |||
@@ -2,7 +2,7 @@ | |||
2 | #include <linux/string.h> | 2 | #include <linux/string.h> |
3 | #include <linux/errno.h> | 3 | #include <linux/errno.h> |
4 | 4 | ||
5 | #include "intr_remapping.h" | 5 | #include "irq_remapping.h" |
6 | 6 | ||
7 | int irq_remapping_enabled; | 7 | int irq_remapping_enabled; |
8 | 8 | ||
diff --git a/drivers/iommu/intr_remapping.h b/drivers/iommu/irq_remapping.h index bd5d98fec148..b12974cc1dfe 100644 --- a/drivers/iommu/intr_remapping.h +++ b/drivers/iommu/irq_remapping.h | |||
@@ -19,8 +19,8 @@ | |||
19 | * remapping drivers but with no need to be visible outside of the IOMMU layer. | 19 | * remapping drivers but with no need to be visible outside of the IOMMU layer. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifndef __INTR_REMAPPING_H | 22 | #ifndef __IRQ_REMAPPING_H |
23 | #define __INTR_REMAPPING_H | 23 | #define __IRQ_REMAPPING_H |
24 | 24 | ||
25 | #ifdef CONFIG_IRQ_REMAP | 25 | #ifdef CONFIG_IRQ_REMAP |
26 | 26 | ||
@@ -85,4 +85,4 @@ extern struct irq_remap_ops intel_irq_remap_ops; | |||
85 | 85 | ||
86 | #endif /* CONFIG_IRQ_REMAP */ | 86 | #endif /* CONFIG_IRQ_REMAP */ |
87 | 87 | ||
88 | #endif /* __INTR_REMAPPING_H */ | 88 | #endif /* __IRQ_REMAPPING_H */ |