Commit 02fd9180 authored by Jon Hunter's avatar Jon Hunter Committed by Viresh Kumar

cpufreq: tegra186: Simplify probe return path

We always put the reference to BPMP device on exit of the Tegra186
CPUFREQ driver and so there is no need to have separate exit paths
for success and failure. Therefore, simplify the probe return path
in the Tegra186 CPUFREQ driver by combining the success and failure
paths.
Signed-off-by: default avatarJon Hunter <jonathanh@nvidia.com>
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
parent 4264e02d
...@@ -223,15 +223,9 @@ static int tegra186_cpufreq_probe(struct platform_device *pdev) ...@@ -223,15 +223,9 @@ static int tegra186_cpufreq_probe(struct platform_device *pdev)
} }
} }
tegra_bpmp_put(bpmp);
tegra186_cpufreq_driver.driver_data = data; tegra186_cpufreq_driver.driver_data = data;
err = cpufreq_register_driver(&tegra186_cpufreq_driver); err = cpufreq_register_driver(&tegra186_cpufreq_driver);
if (err)
return err;
return 0;
put_bpmp: put_bpmp:
tegra_bpmp_put(bpmp); tegra_bpmp_put(bpmp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment