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@xxxxxxxxxx> --- 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