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

Commit eafca851 authored by Christophe Jaillet's avatar Christophe Jaillet Committed by Rafael J. Wysocki
Browse files

cpufreq: imx6q: Fix error handling code



According to the previous error handling code, it is likely that
'goto out_free_opp' is expected here in order to avoid a memory leak in
error handling path.

Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 5aa1599f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -268,7 +268,7 @@ static int imx6q_cpufreq_probe(struct platform_device *pdev)
	ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
	if (ret) {
		dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
		goto put_reg;
		goto out_free_opp;
	}

	/* Make imx6_soc_volt array's size same as arm opp number */