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

Commit 42e3505a authored by Alan Kwong's avatar Alan Kwong
Browse files

drm/msm/sde: reduce resource not found message to debug



CRTC resource pool reports error if certain resource is
not found in the global resource pool. But this is not
an error as resource can be unavailable. Reduce this
message to debug level to avoid invalid warning.

Change-Id: I3df2f2eff7175b26a052f19b42a951b73e31fad2
Signed-off-by: default avatarAlan Kwong <akwong@codeaurora.org>
parent 6a9b4102
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -381,7 +381,7 @@ static void *_sde_crtc_rp_get(struct sde_crtc_respool *rp, u32 type, u64 tag)
	if (rp->ops.get)
		val = rp->ops.get(NULL, type, -1);
	if (IS_ERR_OR_NULL(val)) {
		SDE_ERROR("crtc%d.%u failed to get res:0x%x//\n",
		SDE_DEBUG("crtc%d.%u failed to get res:0x%x//\n",
				crtc->base.id, rp->sequence_id, type);
		return NULL;
	}