Commit 4781bc42 authored by Jérôme Glisse's avatar Jérôme Glisse Committed by Joerg Roedel

iommu/amd: Return positive value in amd_iommu_detect()

Fix amd_iommu_detect() to return positive value on success, like
intended, and not zero. This will not change anything in the end
as AMD IOMMU disable swiotlb and properly associate itself with
devices even if detect() doesn't return a positive value.
Signed-off-by: default avatarJérôme Glisse <jglisse@redhat.com>
Cc: Joerg Roedel <jroedel@suse.de>
Cc: iommu@lists.linux-foundation.org
parent 1f93e4a9
...@@ -2198,7 +2198,7 @@ int __init amd_iommu_detect(void) ...@@ -2198,7 +2198,7 @@ int __init amd_iommu_detect(void)
iommu_detected = 1; iommu_detected = 1;
x86_init.iommu.iommu_init = amd_iommu_init; x86_init.iommu.iommu_init = amd_iommu_init;
return 0; return 1;
} }
/**************************************************************************** /****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment