diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2011-09-06 17:56:07 +0200 |
---|---|---|
committer | Joerg Roedel <joerg.roedel@amd.com> | 2011-10-21 14:37:21 +0200 |
commit | 2cc21c4236f0d1fb67a30d87cfb0f49f185690a0 (patch) | |
tree | 914306040d55b9e87bbaf9b539b0d761a06d3ee2 | |
parent | e5aa7f00776f2d73f410ede5c1f68246cdc83de1 (diff) | |
download | linux-stable-2cc21c4236f0d1fb67a30d87cfb0f49f185690a0.tar.gz linux-stable-2cc21c4236f0d1fb67a30d87cfb0f49f185690a0.tar.bz2 linux-stable-2cc21c4236f0d1fb67a30d87cfb0f49f185690a0.zip |
iommu/amd: Use bus_set_iommu instead of register_iommu
Convert the AMD IOMMU driver to use the new interface for
publishing the iommu_ops.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
-rw-r--r-- | drivers/iommu/amd_iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c index a14f8dc23462..57f6f38ca4f6 100644 --- a/drivers/iommu/amd_iommu.c +++ b/drivers/iommu/amd_iommu.c @@ -2493,7 +2493,7 @@ static unsigned device_dma_ops_init(void) void __init amd_iommu_init_api(void) { - register_iommu(&amd_iommu_ops); + bus_set_iommu(&pci_bus_type, &amd_iommu_ops); } int __init amd_iommu_init_dma_ops(void) |