aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/amd_iommu_init.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-06-27 04:48:16 -0400
committerIngo Molnar <mingo@elte.hu>2008-06-27 04:52:34 -0400
commit92af4e29020ff096178a00605b3662b3b39d4aa9 (patch)
treed471929f3badeba833d3b2579555a9feff166bb7 /arch/x86/kernel/amd_iommu_init.c
parent24d2ba0a8a5816eb8322836271fbcb045d915dfd (diff)
x86, AMD IOMMU, build fix #2
fix: arch/x86/kernel/amd_iommu.c: In function ‘amd_iommu_init_dma_ops': arch/x86/kernel/amd_iommu.c:940: error: lvalue required as left operand of assignment arch/x86/kernel/amd_iommu.c:941: error: lvalue required as left operand of assignment due to !CONFIG_GART_IOMMU. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/amd_iommu_init.c')
-rw-r--r--arch/x86/kernel/amd_iommu_init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/amd_iommu_init.c b/arch/x86/kernel/amd_iommu_init.c
index d1aa2344cd90..6ab8128db1cc 100644
--- a/arch/x86/kernel/amd_iommu_init.c
+++ b/arch/x86/kernel/amd_iommu_init.c
@@ -801,8 +801,10 @@ void __init amd_iommu_detect(void)
801 801
802 if (acpi_table_parse("IVRS", early_amd_iommu_detect) == 0) { 802 if (acpi_table_parse("IVRS", early_amd_iommu_detect) == 0) {
803 iommu_detected = 1; 803 iommu_detected = 1;
804#ifdef CONFIG_GART_IOMMU
804 gart_iommu_aperture_disabled = 1; 805 gart_iommu_aperture_disabled = 1;
805 gart_iommu_aperture = 0; 806 gart_iommu_aperture = 0;
807#endif
806 } 808 }
807} 809}
808 810