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

Commit 558a5b40 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Print the error code for scaling failures"

parents 6f9bedbb d615de36
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -223,7 +223,7 @@ static int kgsl_bus_scale_request(struct kgsl_device *device,
	}

	if (ret)
		KGSL_PWR_ERR(device, "GPU BW scaling failure\n");
		KGSL_PWR_ERR(device, "GPU BW scaling failure: %d\n", ret);

	return ret;
}
@@ -263,7 +263,7 @@ static int kgsl_clk_set_rate(struct kgsl_device *device,
		ret = clk_set_rate(pwr->grp_clks[0], pl->gpu_freq);

	if (ret)
		KGSL_PWR_ERR(device, "GPU clk freq set failure\n");
		KGSL_PWR_ERR(device, "GPU clk freq set failure: %d\n", ret);

	return ret;
}