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

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

Merge "sync: Only print details for active fences"

parents d4c44a8e d67f1ec6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -620,7 +620,8 @@ static void sync_pt_log(struct sync_pt *pt)

	pr_cont("\n");

	if (pt->parent->ops->pt_log)
	/* Show additional details for active fences */
	if (pt->status == 0 && pt->parent->ops->pt_log)
		pt->parent->ops->pt_log(pt);
}