HSI: omap_ssi_core: fix unbalanced pm_runtime_disable()
In error label 'out1' path in ssi_probe(), the pm_runtime_enable()
has not been called yet, so pm_runtime_disable() is not needed.
Fixes: b209e047bc
("HSI: Introduce OMAP SSI driver")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
913a144164
commit
f5181c35ed
|
@ -536,9 +536,9 @@ out3:
|
||||||
device_for_each_child(&pd->dev, NULL, ssi_remove_ports);
|
device_for_each_child(&pd->dev, NULL, ssi_remove_ports);
|
||||||
out2:
|
out2:
|
||||||
ssi_remove_controller(ssi);
|
ssi_remove_controller(ssi);
|
||||||
|
pm_runtime_disable(&pd->dev);
|
||||||
out1:
|
out1:
|
||||||
platform_set_drvdata(pd, NULL);
|
platform_set_drvdata(pd, NULL);
|
||||||
pm_runtime_disable(&pd->dev);
|
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue