mmc: Set PROBE_PREFER_ASYNCHRONOUS for drivers that existed in v4.14
authorDouglas Anderson <dianders@chromium.org>
Thu, 3 Sep 2020 23:24:38 +0000 (16:24 -0700)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 7 Sep 2020 12:24:21 +0000 (14:24 +0200)
This is like commit 3d3451124f3d ("mmc: sdhci-msm: Prefer asynchronous
probe") but applied to a whole pile of drivers.  This batch converts
the drivers that appeared to be around in the v4.14 timeframe.

Signed-off-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Tested-by: Wolfram Sang <wsa+renesas@sang-engineering.com> # SDHI drivers
Link: https://lore.kernel.org/r/20200903162412.3.Id1ff21470f08f427aedd0a6535dcd83ccc56b278@changeid
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/bcm2835.c
drivers/mmc/host/cavium-octeon.c
drivers/mmc/host/dw_mmc-zx.c
drivers/mmc/host/meson-gx-mmc.c
drivers/mmc/host/renesas_sdhi_internal_dmac.c
drivers/mmc/host/renesas_sdhi_sys_dmac.c
drivers/mmc/host/sdhci-cadence.c
drivers/mmc/host/sdhci-xenon.c

index 35320bc..8c2361e 100644 (file)
@@ -1474,6 +1474,7 @@ static struct platform_driver bcm2835_driver = {
        .remove     = bcm2835_remove,
        .driver     = {
                .name           = "sdhost-bcm2835",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = bcm2835_match,
        },
 };
index e299cdd..2c4b2df 100644 (file)
@@ -327,6 +327,7 @@ static struct platform_driver octeon_mmc_driver = {
        .remove         = octeon_mmc_remove,
        .driver         = {
                .name   = KBUILD_MODNAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = octeon_mmc_match,
        },
 };
index d9e4834..51bcc63 100644 (file)
@@ -222,6 +222,7 @@ static struct platform_driver dw_mci_zx_pltfm_driver = {
        .remove         = dw_mci_pltfm_remove,
        .driver         = {
                .name           = "dwmmc_zx",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = dw_mci_zx_match,
                .pm             = &dw_mci_zx_dev_pm_ops,
        },
index a68b430..4ec4157 100644 (file)
@@ -1264,6 +1264,7 @@ static struct platform_driver meson_mmc_driver = {
        .remove         = meson_mmc_remove,
        .driver         = {
                .name = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(meson_mmc_of_match),
        },
 };
index 8ee6b2b..fe13e1e 100644 (file)
@@ -353,6 +353,7 @@ static const struct dev_pm_ops renesas_sdhi_internal_dmac_dev_pm_ops = {
 static struct platform_driver renesas_internal_dmac_sdhi_driver = {
        .driver         = {
                .name   = "renesas_sdhi_internal_dmac",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &renesas_sdhi_internal_dmac_dev_pm_ops,
                .of_match_table = renesas_sdhi_internal_dmac_of_match,
        },
index 13ff023..c5f7896 100644 (file)
@@ -463,6 +463,7 @@ static const struct dev_pm_ops renesas_sdhi_sys_dmac_dev_pm_ops = {
 static struct platform_driver renesas_sys_dmac_sdhi_driver = {
        .driver         = {
                .name   = "sh_mobile_sdhi",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &renesas_sdhi_sys_dmac_dev_pm_ops,
                .of_match_table = renesas_sdhi_sys_dmac_of_match,
        },
index 4d9f768..6f2de54 100644 (file)
@@ -463,6 +463,7 @@ MODULE_DEVICE_TABLE(of, sdhci_cdns_match);
 static struct platform_driver sdhci_cdns_driver = {
        .driver = {
                .name = "sdhci-cdns",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm = &sdhci_cdns_pm_ops,
                .of_match_table = sdhci_cdns_match,
        },
index 4703cd5..24c978d 100644 (file)
@@ -677,6 +677,7 @@ MODULE_DEVICE_TABLE(of, sdhci_xenon_dt_ids);
 static struct platform_driver sdhci_xenon_driver = {
        .driver = {
                .name   = "xenon-sdhci",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_xenon_dt_ids,
                .pm = &sdhci_xenon_dev_pm_ops,
        },