From: Dmitry Osipenko Date: Tue, 2 Mar 2021 12:24:58 +0000 (+0300) Subject: soc/tegra: pmc: Fix imbalanced clock disabling in error code path X-Git-Tag: v4.19.218~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f3c2df75d4ab1e92622a840cd1c90e41179285d2;p=users%2Fdwmw2%2Flinux.git soc/tegra: pmc: Fix imbalanced clock disabling in error code path commit 19221e3083020bd9537624caa0ee0145ed92ba36 upstream. The tegra_powergate_power_up() has a typo in the error code path where it will try to disable clocks twice, fix it. In practice that error never happens, so this is a minor correction. Tested-by: Peter Geis # Ouya T30 Tested-by: Nicolas Chauvet # PAZ00 T20 and TK1 T124 Tested-by: Matt Merhar # Ouya T30 Signed-off-by: Dmitry Osipenko Signed-off-by: Thierry Reding Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c index 6c57e43787cbf..c1880f88a22b5 100644 --- a/drivers/soc/tegra/pmc.c +++ b/drivers/soc/tegra/pmc.c @@ -396,7 +396,7 @@ static int tegra_powergate_power_up(struct tegra_powergate *pg, err = tegra_powergate_enable_clocks(pg); if (err) - goto disable_clks; + goto powergate_off; usleep_range(10, 20);