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

Commit 56e1ee35 authored by Stephen Boyd's avatar Stephen Boyd
Browse files

Merge branch 'clk-helpers' (early part) into clk-fixes

* 'clk-helpers' (early part):
  clk: fix determine rate error with pass-through clock
parents 91584eb5 04bf9ab3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1125,8 +1125,10 @@ static int clk_core_round_rate_nolock(struct clk_core *core,
{
	lockdep_assert_held(&prepare_lock);

	if (!core)
	if (!core) {
		req->rate = 0;
		return 0;
	}

	clk_core_init_rate_req(core, req);