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

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

Merge "msm: clock: Use CLKFLAG_NO_RATE_CACHE in clk_set_parent"

parents ef750214 5e06a050
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -590,7 +590,7 @@ int clk_set_parent(struct clk *clk, struct clk *parent)
		return -ENOSYS;

	mutex_lock(&clk->prepare_lock);
	if (clk->parent == parent)
	if (clk->parent == parent && !(clk->flags & CLKFLAG_NO_RATE_CACHE))
		goto out;
	rc = clk->ops->set_parent(clk, parent);
out: