diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 09:53:14 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 09:53:14 -0700 |
commit | 6770ab5cf506f0f00c17a5f063c5506bdc1eb170 (patch) | |
tree | 9976467459aa4fa0698ef937db0c11e46558f7ca /arch/x86/kernel/amd_iommu_init.c | |
parent | 326528a54f61e38fc16bf2e8ac028c6a33b615ed (diff) | |
parent | b876d08f816527af257e13d89fb0d3b4b849223c (diff) | |
download | kernel_replicant_linux-6770ab5cf506f0f00c17a5f063c5506bdc1eb170.tar.gz kernel_replicant_linux-6770ab5cf506f0f00c17a5f063c5506bdc1eb170.tar.bz2 kernel_replicant_linux-6770ab5cf506f0f00c17a5f063c5506bdc1eb170.zip |
Merge git://git.infradead.org/iommu-2.6
* git://git.infradead.org/iommu-2.6:
Admit to maintaining VT-d, for my sins.
dmar: fix uninitialised 'ret' variable in dmar_parse_dev()
intel-iommu: use coherent_dma_mask in alloc_coherent
amd_iommu: fix nasty bug that caused ILLEGAL_DEVICE_TABLE_ENTRY errors
intel-iommu: IA64 support
dmar: remove the quirk which disables dma-remapping when intr-remapping enabled
dmar: Use queued invalidation interface for IOTLB and context invalidation
dmar: context cache and IOTLB invalidation using queued invalidation
dmar: use spin_lock_irqsave() in qi_submit_sync()
Diffstat (limited to 'arch/x86/kernel/amd_iommu_init.c')
-rw-r--r-- | arch/x86/kernel/amd_iommu_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/amd_iommu_init.c b/arch/x86/kernel/amd_iommu_init.c index 4cd8083c58be..0cdcda35a05f 100644 --- a/arch/x86/kernel/amd_iommu_init.c +++ b/arch/x86/kernel/amd_iommu_init.c @@ -212,7 +212,7 @@ static void __init iommu_set_exclusion_range(struct amd_iommu *iommu) /* Programs the physical address of the device table into the IOMMU hardware */ static void __init iommu_set_device_table(struct amd_iommu *iommu) { - u32 entry; + u64 entry; BUG_ON(iommu->mmio_base == NULL); |