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

Commit aff24cd1 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Rob Clark
Browse files

drm/msm: Replace PTR_RET with PTR_ERR_OR_ZERO



PTR_RET is deprecated, use PTR_ERR_OR_ZERO instead.

Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
parent 78918cd0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ int msm_dss_get_clk(struct device *dev, struct dss_clk *clk_arry, int num_clk)

	for (i = 0; i < num_clk; i++) {
		clk_arry[i].clk = clk_get(dev, clk_arry[i].clk_name);
		rc = PTR_RET(clk_arry[i].clk);
		rc = PTR_ERR_OR_ZERO(clk_arry[i].clk);
		if (rc) {
			DEV_ERR("%pS->%s: '%s' get failed. rc=%d\n",
				__builtin_return_address(0), __func__,