From: Greg Kroah-Hartman Date: Wed, 21 Aug 2019 12:32:42 +0000 (-0700) Subject: 4.14-stable patches X-Git-Tag: v4.19.68~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=516104609a672fd665000d1a57e6cf0710c31379;p=thirdparty%2Fkernel%2Fstable-queue.git 4.14-stable patches added patches: mmc-sdhci-of-arasan-do-now-show-error-message-in-case-of-deffered-probe.patch --- diff --git a/queue-4.14/mmc-sdhci-of-arasan-do-now-show-error-message-in-case-of-deffered-probe.patch b/queue-4.14/mmc-sdhci-of-arasan-do-now-show-error-message-in-case-of-deffered-probe.patch new file mode 100644 index 00000000000..b810960e8a5 --- /dev/null +++ b/queue-4.14/mmc-sdhci-of-arasan-do-now-show-error-message-in-case-of-deffered-probe.patch @@ -0,0 +1,33 @@ +From 60208a267208c27fa3f23dfd36cbda180471fa98 Mon Sep 17 00:00:00 2001 +From: Michal Simek +Date: Mon, 6 Aug 2018 10:43:10 +0200 +Subject: mmc: sdhci-of-arasan: Do now show error message in case of deffered probe + +From: Michal Simek + +commit 60208a267208c27fa3f23dfd36cbda180471fa98 upstream. + +When mmc-pwrseq property is passed mmc_pwrseq_alloc() can return +-EPROBE_DEFER because driver for power sequence provider is not probed +yet. Do not show error message when this situation happens. + +Signed-off-by: Michal Simek +Signed-off-by: Ulf Hansson +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/mmc/host/sdhci-of-arasan.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +--- a/drivers/mmc/host/sdhci-of-arasan.c ++++ b/drivers/mmc/host/sdhci-of-arasan.c +@@ -638,7 +638,8 @@ static int sdhci_arasan_probe(struct pla + + ret = mmc_of_parse(host->mmc); + if (ret) { +- dev_err(&pdev->dev, "parsing dt failed (%d)\n", ret); ++ if (ret != -EPROBE_DEFER) ++ dev_err(&pdev->dev, "parsing dt failed (%d)\n", ret); + goto unreg_clk; + } + diff --git a/queue-4.14/series b/queue-4.14/series index 84fe4a463e1..c7561c42117 100644 --- a/queue-4.14/series +++ b/queue-4.14/series @@ -68,3 +68,4 @@ net-mlx5e-only-support-tx-rx-pause-setting-for-port-owner.patch net-mlx5e-use-flow-keys-dissector-to-parse-packets-for-arfs.patch team-add-vlan-tx-offload-to-hw_enc_features.patch bonding-add-vlan-tx-offload-to-hw_enc_features.patch +mmc-sdhci-of-arasan-do-now-show-error-message-in-case-of-deffered-probe.patch