Commit e91e3d90 authored by Viresh Kumar's avatar Viresh Kumar
Browse files

media: venus: dev_pm_opp_put_*() accepts NULL argument



The dev_pm_opp_put_*() APIs now accepts a NULL opp_table pointer and so
there is no need for us to carry the extra check. Drop them.

Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
parent b66ba5b5
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -898,7 +898,6 @@ static void core_put_v4(struct device *dev)

	if (core->has_opp_table)
		dev_pm_opp_of_remove_table(dev);
	if (core->opp_table)
	dev_pm_opp_put_clkname(core->opp_table);

}