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

Commit 17ad13ba authored by Markus Elfring's avatar Markus Elfring Committed by Rafael J. Wysocki
Browse files

cpufreq-dt: Drop unnecessary check before cpufreq_cooling_unregister() invocation



The cpufreq_cooling_unregister() function tests whether its argument is NULL
and then returns immediately. Thus the test around the call is not needed.

This issue was detected by using the Coccinelle software.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
[ rjw: Subject ]
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent f7b27061
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -320,7 +320,6 @@ static int cpufreq_exit(struct cpufreq_policy *policy)
{
	struct private_data *priv = policy->driver_data;

	if (priv->cdev)
	cpufreq_cooling_unregister(priv->cdev);
	dev_pm_opp_free_cpufreq_table(priv->cpu_dev, &policy->freq_table);
	of_free_opp_table(priv->cpu_dev);