PM / devfreq: exynos: fix error path in exynos_bus_probe()
In case of exynos_bus_parse_of() failure the code shouldn't try to remove the OPP table and disable+unprepare bus->clk as it has been already handled in exynos_bus_parse_of(). Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Acked-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
This commit is contained in:
parent
a63eb1a6ab
commit
c07e074b7c
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ static int exynos_bus_probe(struct platform_device *pdev)
|
||||||
/* Parse the device-tree to get the resource information */
|
/* Parse the device-tree to get the resource information */
|
||||||
ret = exynos_bus_parse_of(np, bus);
|
ret = exynos_bus_parse_of(np, bus);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
return ret;
|
||||||
|
|
||||||
profile = devm_kzalloc(dev, sizeof(*profile), GFP_KERNEL);
|
profile = devm_kzalloc(dev, sizeof(*profile), GFP_KERNEL);
|
||||||
if (!profile) {
|
if (!profile) {
|
||||||
|
|
Loading…
Reference in a new issue