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: Jérôme Glisse <jglisse@redhat.com>
Cc: Joerg Roedel <jroedel@suse.de>
Cc: iommu@lists.linux-foundation.org
This commit is contained in:
Jérôme Glisse 2015-08-31 18:13:03 -04:00 коммит произвёл Joerg Roedel
Родитель 1f93e4a96c
Коммит 4781bc427b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2198,7 +2198,7 @@ int __init amd_iommu_detect(void)
iommu_detected = 1;
x86_init.iommu.iommu_init = amd_iommu_init;
return 0;
return 1;
}
/****************************************************************************