Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 00cf99ee authored by Wei Yongjun's avatar Wei Yongjun Committed by Thierry Reding
Browse files

pwm: renesas-tpu: fix return value check in tpu_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().

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Reviewed-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarThierry Reding <thierry.reding@gmail.com>
parent 99b82abb
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -410,10 +410,8 @@ static int tpu_probe(struct platform_device *pdev)
	}

	tpu->base = devm_ioremap_resource(&pdev->dev, res);
	if (tpu->base == NULL) {
		dev_err(&pdev->dev, "failed to remap I/O memory\n");
		return -ENXIO;
	}
	if (IS_ERR(tpu->base))
		return PTR_ERR(tpu->base);

	tpu->clk = devm_clk_get(&pdev->dev, NULL);
	if (IS_ERR(tpu->clk)) {