From: Lucas Stach <dev@lynxeye.de>
To: barebox@lists.infradead.org
Subject: [PATCH 2/2] mci: sdhci: arasan: remove dead no 1.8V quirk
Date: Thu, 12 Dec 2024 23:10:34 +0100 [thread overview]
Message-ID: <20241212221034.210933-2-dev@lynxeye.de> (raw)
In-Reply-To: <20241212221034.210933-1-dev@lynxeye.de>
Since 21e5f283cb72 ("mci: sdhci: arasan: Use sdhci_setup_host()"), the
no-1-8-v DT property is handled by the common mci_of_parse. Remove the
dead quirk from the driver.
Signed-off-by: Lucas Stach <dev@lynxeye.de>
---
drivers/mci/arasan-sdhci.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/drivers/mci/arasan-sdhci.c b/drivers/mci/arasan-sdhci.c
index 2af9ad10bed7..112fb5a669d5 100644
--- a/drivers/mci/arasan-sdhci.c
+++ b/drivers/mci/arasan-sdhci.c
@@ -70,7 +70,6 @@ struct arasan_sdhci_host {
struct sdhci_arasan_clk_data clk_data;
/* Controller does not have CD wired and will not function normally without */
#define SDHCI_ARASAN_QUIRK_FORCE_CDTEST BIT(0)
-#define SDHCI_ARASAN_QUIRK_NO_1_8_V BIT(1)
/*
* Some of the Arasan variations might not have timing requirements
* met at 25MHz for Default Speed mode, those controllers work at
@@ -768,9 +767,6 @@ static int arasan_sdhci_probe(struct device *dev)
if (of_property_read_bool(np, "xlnx,fails-without-test-cd"))
arasan_sdhci->quirks |= SDHCI_ARASAN_QUIRK_FORCE_CDTEST;
- if (of_property_read_bool(np, "no-1-8-v"))
- arasan_sdhci->quirks |= SDHCI_ARASAN_QUIRK_NO_1_8_V;
-
if (of_device_is_compatible(np, "xlnx,zynqmp-8.9a")) {
if (IS_ENABLED(CONFIG_MCI_TUNING))
mci->ops.execute_tuning = arasan_zynqmp_execute_tuning;
--
2.47.1
next prev parent reply other threads:[~2024-12-12 22:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 22:10 [PATCH 1/2] mci: sdhci: arasan: use correct input clock for divider calculation Lucas Stach
2024-12-12 22:10 ` Lucas Stach [this message]
2024-12-16 8:26 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241212221034.210933-2-dev@lynxeye.de \
--to=dev@lynxeye.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.