]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.9-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Nov 2021 11:16:43 +0000 (12:16 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Nov 2021 11:16:43 +0000 (12:16 +0100)
added patches:
soc-tegra-pmc-fix-imbalanced-clock-disabling-in-error-code-path.patch

queue-4.9/series
queue-4.9/soc-tegra-pmc-fix-imbalanced-clock-disabling-in-error-code-path.patch [new file with mode: 0644]

index 5bfffaa1612df8dd92a6fdc38a02024f64a69396..13728a9ea6e2786aea872b6c4473e2d51ec6b50d 100644 (file)
@@ -202,3 +202,4 @@ batman-adv-don-t-always-reallocate-the-fragmentation-skb-head.patch
 asoc-dapm-cover-regression-by-kctl-change-notification-fix.patch
 usb-max-3421-use-driver-data-instead-of-maintaining-a-list-of-bound-devices.patch
 hugetlbfs-flush-tlbs-correctly-after-huge_pmd_unshare.patch
+soc-tegra-pmc-fix-imbalanced-clock-disabling-in-error-code-path.patch
diff --git a/queue-4.9/soc-tegra-pmc-fix-imbalanced-clock-disabling-in-error-code-path.patch b/queue-4.9/soc-tegra-pmc-fix-imbalanced-clock-disabling-in-error-code-path.patch
new file mode 100644 (file)
index 0000000..225d1e4
--- /dev/null
@@ -0,0 +1,34 @@
+From 19221e3083020bd9537624caa0ee0145ed92ba36 Mon Sep 17 00:00:00 2001
+From: Dmitry Osipenko <digetx@gmail.com>
+Date: Tue, 2 Mar 2021 15:24:58 +0300
+Subject: soc/tegra: pmc: Fix imbalanced clock disabling in error code path
+
+From: Dmitry Osipenko <digetx@gmail.com>
+
+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 <pgwipeout@gmail.com> # Ouya T30
+Tested-by: Nicolas Chauvet <kwizart@gmail.com> # PAZ00 T20 and TK1 T124
+Tested-by: Matt Merhar <mattmerhar@protonmail.com> # Ouya T30
+Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
+Signed-off-by: Thierry Reding <treding@nvidia.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/soc/tegra/pmc.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/soc/tegra/pmc.c
++++ b/drivers/soc/tegra/pmc.c
+@@ -384,7 +384,7 @@ static int tegra_powergate_power_up(stru
+       err = tegra_powergate_enable_clocks(pg);
+       if (err)
+-              goto disable_clks;
++              goto powergate_off;
+       usleep_range(10, 20);