]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.4-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Aug 2023 19:03:14 +0000 (21:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Aug 2023 19:03:14 +0000 (21:03 +0200)
added patches:
mmc-f-sdh30-fix-order-of-function-calls-in-sdhci_f_sdh30_remove.patch

queue-5.4/mmc-f-sdh30-fix-order-of-function-calls-in-sdhci_f_sdh30_remove.patch [new file with mode: 0644]
queue-5.4/series

diff --git a/queue-5.4/mmc-f-sdh30-fix-order-of-function-calls-in-sdhci_f_sdh30_remove.patch b/queue-5.4/mmc-f-sdh30-fix-order-of-function-calls-in-sdhci_f_sdh30_remove.patch
new file mode 100644 (file)
index 0000000..ee27214
--- /dev/null
@@ -0,0 +1,49 @@
+From 58abdd80b93b09023ca03007b608685c41e3a289 Mon Sep 17 00:00:00 2001
+From: Yangtao Li <frank.li@vivo.com>
+Date: Thu, 27 Jul 2023 15:00:51 +0800
+Subject: mmc: f-sdh30: fix order of function calls in sdhci_f_sdh30_remove
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+From: Yangtao Li <frank.li@vivo.com>
+
+commit 58abdd80b93b09023ca03007b608685c41e3a289 upstream.
+
+The order of function calls in sdhci_f_sdh30_remove is wrong,
+let's call sdhci_pltfm_unregister first.
+
+Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
+Fixes: 5def5c1c15bf ("mmc: sdhci-f-sdh30: Replace with sdhci_pltfm")
+Signed-off-by: Yangtao Li <frank.li@vivo.com>
+Reported-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
+Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
+Acked-by: Adrian Hunter <adrian.hunter@intel.com>
+Cc: stable@vger.kernel.org
+Link: https://lore.kernel.org/r/20230727070051.17778-62-frank.li@vivo.com
+Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/mmc/host/sdhci_f_sdh30.c |    8 +++++---
+ 1 file changed, 5 insertions(+), 3 deletions(-)
+
+--- a/drivers/mmc/host/sdhci_f_sdh30.c
++++ b/drivers/mmc/host/sdhci_f_sdh30.c
+@@ -212,12 +212,14 @@ static int sdhci_f_sdh30_remove(struct p
+ {
+       struct sdhci_host *host = platform_get_drvdata(pdev);
+       struct f_sdhost_priv *priv = sdhci_f_sdhost_priv(host);
+-
+-      clk_disable_unprepare(priv->clk_iface);
+-      clk_disable_unprepare(priv->clk);
++      struct clk *clk_iface = priv->clk_iface;
++      struct clk *clk = priv->clk;
+       sdhci_pltfm_unregister(pdev);
++      clk_disable_unprepare(clk_iface);
++      clk_disable_unprepare(clk);
++
+       return 0;
+ }
index 1e28f9b5cc36fc92d7b2965b77c8f0d08aee3224..d515dd3b25d78541f1a32c400d72856a140384bc 100644 (file)
@@ -93,3 +93,4 @@ af_unix-fix-null-ptr-deref-in-unix_stream_sendpage.patch
 virtio-net-set-queues-after-driver_ok.patch
 net-fix-the-rto-timer-retransmitting-skb-every-1ms-if-linear-option-is-enabled.patch
 net-xfrm-amend-xfrma_sec_ctx-nla_policy-structure.patch
+mmc-f-sdh30-fix-order-of-function-calls-in-sdhci_f_sdh30_remove.patch