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

Commit 018e528e authored by Mahadevan's avatar Mahadevan
Browse files

disp: rotator: remove warning log from spin_lock



On rotator commit failure resync timeline will
happen which gives continuous warning logs in
console leads to cpu throttling. To resolve this
the warning message is removed from spin_lock.

Change-Id: I5ce66413556518668769cad3bc6a900f9bdada4b
Signed-off-by: default avatarMahadevan <mahap@codeaurora.org>
parent f6c68cc1
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2015-2020, The Linux Foundation. All rights reserved.
 * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
 */

#define pr_fmt(fmt)	"%s: " fmt, __func__
@@ -249,11 +249,13 @@ void sde_rotator_resync_timeline(struct sde_rot_timeline *tl)

	spin_lock_irqsave(&tl->lock, flags);
	val = tl->next_value - tl->curr_value;
	if (val > 0) {
		SDEROT_WARN("flush %s:%d\n", tl->name, val);
	if (val > 0)
		sde_rotator_inc_timeline_locked(tl, val);
	}
	spin_unlock_irqrestore(&tl->lock, flags);

	if (val > 0)
		SDEROT_WARN("flush %s:%d\n", tl->name, val);

}

/*