mmc: sdhci-pltfm: Make driver OF independent
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 6 Oct 2023 10:58:03 +0000 (13:58 +0300)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 10 Oct 2023 13:46:39 +0000 (15:46 +0200)
Since we have device_is_compatible() API, drop OF dependency
in the driver.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20231006105803.3374241-2-andriy.shevchenko@linux.intel.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-pltfm.c

index 4d1a703a5bdbbc3ad4b196ae5549faf24b25507b..62753d72198ab2c1815b85d74f3ff848ac980206 100644 (file)
@@ -19,7 +19,6 @@
 #include <linux/err.h>
 #include <linux/module.h>
 #include <linux/property.h>
-#include <linux/of.h>
 #ifdef CONFIG_PPC
 #include <asm/machdep.h>
 #endif
@@ -56,19 +55,16 @@ static bool sdhci_wp_inverted(struct device *dev)
 
 static void sdhci_get_compatibility(struct platform_device *pdev)
 {
+       struct device *dev = &pdev->dev;
        struct sdhci_host *host = platform_get_drvdata(pdev);
-       struct device_node *np = pdev->dev.of_node;
-
-       if (!np)
-               return;
 
-       if (of_device_is_compatible(np, "fsl,p2020-rev1-esdhc"))
+       if (device_is_compatible(dev, "fsl,p2020-rev1-esdhc"))
                host->quirks |= SDHCI_QUIRK_BROKEN_DMA;
 
-       if (of_device_is_compatible(np, "fsl,p2020-esdhc") ||
-           of_device_is_compatible(np, "fsl,p1010-esdhc") ||
-           of_device_is_compatible(np, "fsl,t4240-esdhc") ||
-           of_device_is_compatible(np, "fsl,mpc8536-esdhc"))
+       if (device_is_compatible(dev, "fsl,p2020-esdhc") ||
+           device_is_compatible(dev, "fsl,p1010-esdhc") ||
+           device_is_compatible(dev, "fsl,t4240-esdhc") ||
+           device_is_compatible(dev, "fsl,mpc8536-esdhc"))
                host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
 }