Commit 7c88b928 authored by Wei Yongjun's avatar Wei Yongjun Committed by Mark Brown

ASoC: sprd: Fix return value check in sprd_mcdt_probe()

In case of error, the function devm_ioremap_resource() returns ERR_PTR()
and never returns NULL. The NULL test in the return value check should
be replaced with IS_ERR().

Fixes: d7bff893 ("ASoC: sprd: Add Spreadtrum multi-channel data transfer support")
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: default avatarBaolin Wang <baolin.wang@linaro.org>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 62be484f
...@@ -951,8 +951,8 @@ static int sprd_mcdt_probe(struct platform_device *pdev) ...@@ -951,8 +951,8 @@ static int sprd_mcdt_probe(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
mcdt->base = devm_ioremap_resource(&pdev->dev, res); mcdt->base = devm_ioremap_resource(&pdev->dev, res);
if (!mcdt->base) if (IS_ERR(mcdt->base))
return -ENOMEM; return PTR_ERR(mcdt->base);
mcdt->dev = &pdev->dev; mcdt->dev = &pdev->dev;
spin_lock_init(&mcdt->lock); spin_lock_init(&mcdt->lock);
......
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