diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-06-27 10:48:16 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-27 10:52:34 +0200 |
commit | 92af4e29020ff096178a00605b3662b3b39d4aa9 (patch) | |
tree | d471929f3badeba833d3b2579555a9feff166bb7 /arch/x86/kernel/amd_iommu.c | |
parent | 24d2ba0a8a5816eb8322836271fbcb045d915dfd (diff) | |
download | linux-92af4e29020ff096178a00605b3662b3b39d4aa9.tar.gz linux-92af4e29020ff096178a00605b3662b3b39d4aa9.tar.bz2 linux-92af4e29020ff096178a00605b3662b3b39d4aa9.zip |
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.c')
-rw-r--r-- | arch/x86/kernel/amd_iommu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c index 134dea103247..a1b38561d347 100644 --- a/arch/x86/kernel/amd_iommu.c +++ b/arch/x86/kernel/amd_iommu.c @@ -937,8 +937,10 @@ int __init amd_iommu_init_dma_ops(void) iommu_detected = 1; force_iommu = 1; bad_dma_address = 0; +#ifdef CONFIG_GART_IOMMU gart_iommu_aperture_disabled = 1; gart_iommu_aperture = 0; +#endif dma_ops = &amd_iommu_dma_ops; |