Commit ae7d2923 authored by Wei Yongjun's avatar Wei Yongjun Committed by Joerg Roedel
Browse files

iommu/sun50i: Fix return value check in sun50i_iommu_probe()



In case of error, the function devm_platform_ioremap_resource() returns
ERR_PTR() not NULL. The NULL test in the return value check must be
replaced with IS_ERR().

Fixes: 4100b8c2 ("iommu: Add Allwinner H6 IOMMU driver")
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Acked-by: default avatarMaxime Ripard <mripard@kernel.org>
Link: https://lore.kernel.org/r/20200519091857.134170-1-weiyongjun1@huawei.com


Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent 38b91f81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -941,7 +941,7 @@ static int sun50i_iommu_probe(struct platform_device *pdev)
	}

	iommu->base = devm_platform_ioremap_resource(pdev, 0);
	if (!iommu->base) {
	if (IS_ERR(iommu->base)) {
		ret = PTR_ERR(iommu->base);
		goto err_free_group;
	}