diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2011-09-06 15:56:07 (GMT) |
---|---|---|
committer | Joerg Roedel <joerg.roedel@amd.com> | 2011-10-21 12:37:21 (GMT) |
commit | 2cc21c4236f0d1fb67a30d87cfb0f49f185690a0 (patch) | |
tree | 914306040d55b9e87bbaf9b539b0d761a06d3ee2 | |
parent | e5aa7f00776f2d73f410ede5c1f68246cdc83de1 (diff) | |
download | linux-2cc21c4236f0d1fb67a30d87cfb0f49f185690a0.tar.xz |
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 a14f8dc..57f6f38 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) |