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

Commit 75d898ca authored by Lloyd Atkinson's avatar Lloyd Atkinson Committed by Gerrit - the friendly Code Review server
Browse files

drm/msm/sde: drop rm iterator error message to debug



Change the resource manager iterator error message to debug when
someone attempts to reuse an iterator that has already done its
single pass through the list. This allows simplified handling of
client logic without printing error messages.

Change-Id: Id2ce2652d993e2defed31d911d8218efb74488ff
Signed-off-by: default avatarLloyd Atkinson <latkinso@codeaurora.org>
parent 05688643
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ bool sde_rm_get_hw(struct sde_rm *rm, struct sde_rm_hw_iter *i)
	blk_list = &rm->hw_blks[i->type];

	if (i->blk && (&i->blk->list == blk_list)) {
		SDE_ERROR("attempt resume iteration past last\n");
		SDE_DEBUG("attempt resume iteration past last\n");
		return false;
	}