mmc: Set PROBE_PREFER_ASYNCHRONOUS for drivers that existed in v4.4
authorDouglas Anderson <dianders@chromium.org>
Thu, 3 Sep 2020 23:24:36 +0000 (16:24 -0700)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 7 Sep 2020 12:20:17 +0000 (14:20 +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.4 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> # SH_MMCIF
Tested-by: Thierry Reding <treding@nvidia.com>
Link: https://lore.kernel.org/r/20200903162412.1.Id501e96fa63224f77bb86b2135a5e8324ffb9c43@changeid
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
44 files changed:
drivers/mmc/host/android-goldfish.c
drivers/mmc/host/atmel-mci.c
drivers/mmc/host/au1xmmc.c
drivers/mmc/host/davinci_mmc.c
drivers/mmc/host/dw_mmc-exynos.c
drivers/mmc/host/dw_mmc-k3.c
drivers/mmc/host/dw_mmc-pltfm.c
drivers/mmc/host/dw_mmc-rockchip.c
drivers/mmc/host/jz4740_mmc.c
drivers/mmc/host/moxart-mmc.c
drivers/mmc/host/mtk-sd.c
drivers/mmc/host/mvsdio.c
drivers/mmc/host/mxcmmc.c
drivers/mmc/host/mxs-mmc.c
drivers/mmc/host/omap.c
drivers/mmc/host/omap_hsmmc.c
drivers/mmc/host/pxamci.c
drivers/mmc/host/rtsx_pci_sdmmc.c
drivers/mmc/host/rtsx_usb_sdmmc.c
drivers/mmc/host/s3cmci.c
drivers/mmc/host/sdhci-acpi.c
drivers/mmc/host/sdhci-bcm-kona.c
drivers/mmc/host/sdhci-cns3xxx.c
drivers/mmc/host/sdhci-dove.c
drivers/mmc/host/sdhci-esdhc-imx.c
drivers/mmc/host/sdhci-iproc.c
drivers/mmc/host/sdhci-of-arasan.c
drivers/mmc/host/sdhci-of-at91.c
drivers/mmc/host/sdhci-of-esdhc.c
drivers/mmc/host/sdhci-of-hlwd.c
drivers/mmc/host/sdhci-pxav2.c
drivers/mmc/host/sdhci-pxav3.c
drivers/mmc/host/sdhci-s3c.c
drivers/mmc/host/sdhci-sirf.c
drivers/mmc/host/sdhci-spear.c
drivers/mmc/host/sdhci-st.c
drivers/mmc/host/sdhci-tegra.c
drivers/mmc/host/sdhci_f_sdh30.c
drivers/mmc/host/sh_mmcif.c
drivers/mmc/host/sunxi-mmc.c
drivers/mmc/host/tmio_mmc.c
drivers/mmc/host/usdhi6rol0.c
drivers/mmc/host/wbsd.c
drivers/mmc/host/wmt-sdmmc.c

index ceb4924e02d0104ba11c41c2b430722e744e5ae5..e878fdf8f20ad868c12c816ae67ea3b31ef39a8a 100644 (file)
@@ -537,6 +537,7 @@ static struct platform_driver goldfish_mmc_driver = {
        .remove         = goldfish_mmc_remove,
        .driver         = {
                .name   = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
 };
 
index 3fc3bbea8536e0470a080ddde11db4817656363f..444bd3a0a92276e672cfda0a6499ea56922fdc58 100644 (file)
@@ -2668,6 +2668,7 @@ static struct platform_driver atmci_driver = {
        .remove         = atmci_remove,
        .driver         = {
                .name           = "atmel_mci",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(atmci_dt_ids),
                .pm             = &atmci_dev_pm_ops,
        },
index 9bb1910268cab7b02b5c9e1a917b11909ead93f9..bd00515fbaba21eb14957b8d2b2a44b382e2204a 100644 (file)
@@ -1189,6 +1189,7 @@ static struct platform_driver au1xmmc_driver = {
        .resume        = au1xmmc_resume,
        .driver        = {
                .name  = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
 };
 
index 66d740ee7d451d3de3b7c0d709c2e6c41c374488..90cd179625fc27be597ab4e4bcc21f2b626a9ead 100644 (file)
@@ -1395,6 +1395,7 @@ static const struct dev_pm_ops davinci_mmcsd_pm = {
 static struct platform_driver davinci_mmcsd_driver = {
        .driver         = {
                .name   = "davinci_mmc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = davinci_mmcsd_pm_ops,
                .of_match_table = davinci_mmc_dt_ids,
        },
index 95adeee07217a754839d512be5bd93f7b0712d14..0c75810812a0a88efb77ea2c81c42a85529c9926 100644 (file)
@@ -592,6 +592,7 @@ static struct platform_driver dw_mci_exynos_pltfm_driver = {
        .remove         = dw_mci_exynos_remove,
        .driver         = {
                .name           = "dwmmc_exynos",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = dw_mci_exynos_match,
                .pm             = &dw_mci_exynos_pmops,
        },
index db1a84b2ba612f3f1ca8be7b9bedd222d516eef4..29d2494eb27a310ab5b1dddfc257f7042cefa5e6 100644 (file)
@@ -473,6 +473,7 @@ static struct platform_driver dw_mci_k3_pltfm_driver = {
        .remove         = dw_mci_pltfm_remove,
        .driver         = {
                .name           = "dwmmc_k3",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = dw_mci_k3_match,
                .pm             = &dw_mci_k3_dev_pm_ops,
        },
index 7de37f524a9665c0389636fd47e5f6dbdd880708..73731cd3ba2315e335dc19d8c42a9497142352e7 100644 (file)
@@ -98,6 +98,7 @@ static struct platform_driver dw_mci_pltfm_driver = {
        .remove         = dw_mci_pltfm_remove,
        .driver         = {
                .name           = "dw_mmc",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = dw_mci_pltfm_match,
                .pm             = &dw_mci_pltfm_pmops,
        },
index d4d02134848c61fbd94f775552976b506b874150..753502ce3c85865b6135dfdb4b7405e8387f67b5 100644 (file)
@@ -383,6 +383,7 @@ static struct platform_driver dw_mci_rockchip_pltfm_driver = {
        .remove         = dw_mci_rockchip_remove,
        .driver         = {
                .name           = "dwmmc_rockchip",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = dw_mci_rockchip_match,
                .pm             = &dw_mci_rockchip_dev_pm_ops,
        },
index fea0a42010c71046a9bc3b2eef0306b392e5b461..a1f92fed2a55b7961b9b6b9413cfe231ea5a912a 100644 (file)
@@ -1124,6 +1124,7 @@ static struct platform_driver jz4740_mmc_driver = {
        .remove = jz4740_mmc_remove,
        .driver = {
                .name = "jz4740-mmc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(jz4740_mmc_of_match),
                .pm = pm_ptr(&jz4740_mmc_pm_ops),
        },
index fc6b9cf27d0bebba32720a8ea2d99b8b04d146d1..2bfb376fddc48b298a724ac76b43a4a29e066034 100644 (file)
@@ -717,6 +717,7 @@ static struct platform_driver moxart_mmc_driver = {
        .remove     = moxart_remove,
        .driver     = {
                .name           = "mmc-moxart",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = moxart_mmc_match,
        },
 };
index ed2b24691b4f13177932d1cabd92650eb84d6582..691c928edab71ce2e67419dc5c13fe310721bade 100644 (file)
@@ -2689,6 +2689,7 @@ static struct platform_driver mt_msdc_driver = {
        .remove = msdc_drv_remove,
        .driver = {
                .name = "mtk-msdc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = msdc_of_ids,
                .pm = &msdc_dev_pm_ops,
        },
index cc0752a9df6d4c778ff5cba1583d0f01fa9cb1b7..629efbe639c4f6e52548bfad9e2af52a291a6bc3 100644 (file)
@@ -824,6 +824,7 @@ static struct platform_driver mvsd_driver = {
        .remove         = mvsd_remove,
        .driver         = {
                .name   = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = mvsdio_dt_ids,
        },
 };
index b3d654c688e52769b50745eb6f7db574535f86dc..12ee07285980c3bd0827f64988592fde1704384e 100644 (file)
@@ -1244,6 +1244,7 @@ static struct platform_driver mxcmci_driver = {
        .id_table       = mxcmci_devtype,
        .driver         = {
                .name           = DRIVER_NAME,
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &mxcmci_pm_ops,
                .of_match_table = mxcmci_of_match,
        }
index b1820def36c014fe9217da2ea2f707a9e8ae2a22..75007f61df9724ff9af15dc7914c21c3f2a5b6ad 100644 (file)
@@ -726,6 +726,7 @@ static struct platform_driver mxs_mmc_driver = {
        .id_table       = mxs_ssp_ids,
        .driver         = {
                .name   = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &mxs_mmc_pm_ops,
                .of_match_table = mxs_mmc_dt_ids,
        },
index 33d7af7c7762a8499605790b8ebb6966702e5d35..6aa0537f1f84725cb3227869d86b63000b7f1e12 100644 (file)
@@ -1504,6 +1504,7 @@ static struct platform_driver mmc_omap_driver = {
        .remove         = mmc_omap_remove,
        .driver         = {
                .name   = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mmc_omap_match),
        },
 };
index d02983e23ed16450744d1e37d503f49fcb012fbe..aa9cc49206d154c99932cd56735dea509ce223a8 100644 (file)
@@ -2165,6 +2165,7 @@ static struct platform_driver omap_hsmmc_driver = {
        .remove         = omap_hsmmc_remove,
        .driver         = {
                .name = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm = &omap_hsmmc_dev_pm_ops,
                .of_match_table = of_match_ptr(omap_mmc_of_match),
        },
index 3a9333475a2b3c3eb0d06806ed01e740a8fa87d9..29f6180a00363ccd686f5b3a63fbab5b6319718b 100644 (file)
@@ -811,6 +811,7 @@ static struct platform_driver pxamci_driver = {
        .remove         = pxamci_remove,
        .driver         = {
                .name   = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(pxa_mmc_dt_ids),
        },
 };
index 2763a376b0546eacaa8fa3c3719e5ee25d154d00..eb395e14420717770377b345c41f7f5f2b0b7b5f 100644 (file)
@@ -1471,6 +1471,7 @@ static struct platform_driver rtsx_pci_sdmmc_driver = {
        .id_table       = rtsx_pci_sdmmc_ids,
        .driver         = {
                .name   = DRV_NAME_RTSX_PCI_SDMMC,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
 };
 module_platform_driver(rtsx_pci_sdmmc_driver);
index 7225d9312af8c9a2fe60877d6db52416ba8b68fd..598f49573f5dd174e23003e7d59729dcb039f602 100644 (file)
@@ -1458,6 +1458,7 @@ static struct platform_driver rtsx_usb_sdmmc_driver = {
        .id_table       = rtsx_usb_sdmmc_ids,
        .driver         = {
                .name   = "rtsx_usb_sdmmc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &rtsx_usb_sdmmc_dev_pm_ops,
        },
 };
index a725fb1abce70ca158107af8fec85c19d3520c7d..e3698aba8dd30389e6e1af23a6fc2735b4db06fe 100644 (file)
@@ -1804,6 +1804,7 @@ MODULE_DEVICE_TABLE(platform, s3cmci_driver_ids);
 static struct platform_driver s3cmci_driver = {
        .driver = {
                .name   = "s3c-sdi",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = s3cmci_dt_match,
        },
        .id_table       = s3cmci_driver_ids,
index 284cba11e27952aa9fd241f3bd59e548fcc7398f..fc41d0451f2041ecb6e98e9bd81c745ef9440038 100644 (file)
@@ -1027,6 +1027,7 @@ static const struct dev_pm_ops sdhci_acpi_pm_ops = {
 static struct platform_driver sdhci_acpi_driver = {
        .driver = {
                .name                   = "sdhci-acpi",
+               .probe_type             = PROBE_PREFER_ASYNCHRONOUS,
                .acpi_match_table       = sdhci_acpi_ids,
                .pm                     = &sdhci_acpi_pm_ops,
        },
index a6c2bd202b45fa8a112fbf3bb523ab3e8976d0aa..4d4aac85cc7a1a4cdf1ae7f244efa6e09d7cf36e 100644 (file)
@@ -324,6 +324,7 @@ err_pltfm_free:
 static struct platform_driver sdhci_bcm_kona_driver = {
        .driver         = {
                .name   = "sdhci-kona",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &sdhci_pltfm_pmops,
                .of_match_table = sdhci_bcm_kona_of_match,
        },
index 811eab1b8964ab8c0a46dfeed9e4a32d160c2400..2a29c7a4f3081e9c601ccb64f6ad63133664372d 100644 (file)
@@ -98,6 +98,7 @@ static int sdhci_cns3xxx_probe(struct platform_device *pdev)
 static struct platform_driver sdhci_cns3xxx_driver = {
        .driver         = {
                .name   = "sdhci-cns3xxx",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &sdhci_pltfm_pmops,
        },
        .probe          = sdhci_cns3xxx_probe,
index fe9da3122fe98936636566b00ea873c7ab726256..5e5bf82e597638f8152ad146b1dc0ebd5f9cdbf9 100644 (file)
@@ -105,6 +105,7 @@ MODULE_DEVICE_TABLE(of, sdhci_dove_of_match_table);
 static struct platform_driver sdhci_dove_driver = {
        .driver         = {
                .name   = "sdhci-dove",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &sdhci_pltfm_pmops,
                .of_match_table = sdhci_dove_of_match_table,
        },
index a2eb36c9b1dabc806c324651a2d44eafb46a8e6a..62b3d4767916a47b7054e5be17900fefa33e6203 100644 (file)
@@ -1925,6 +1925,7 @@ static const struct dev_pm_ops sdhci_esdhc_pmops = {
 static struct platform_driver sdhci_esdhc_imx_driver = {
        .driver         = {
                .name   = "sdhci-esdhc-imx",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = imx_esdhc_dt_ids,
                .pm     = &sdhci_esdhc_pmops,
        },
index b540aa6faacbc0ee4da9052d484bb48d7fde9de8..c9434b461aabc6fedf3f57c9d7fb9cc9ecd65421 100644 (file)
@@ -369,6 +369,7 @@ err:
 static struct platform_driver sdhci_iproc_driver = {
        .driver = {
                .name = "sdhci-iproc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_iproc_of_match,
                .acpi_match_table = ACPI_PTR(sdhci_iproc_acpi_ids),
                .pm = &sdhci_pltfm_pmops,
index 3aea46db2ea7a06a102bc8b94cc8c9771a023088..829ccef874262093b9e8604cd49a671e475f9e23 100644 (file)
@@ -1693,6 +1693,7 @@ static int sdhci_arasan_remove(struct platform_device *pdev)
 static struct platform_driver sdhci_arasan_driver = {
        .driver = {
                .name = "sdhci-arasan",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_arasan_of_match,
                .pm = &sdhci_arasan_dev_pm_ops,
        },
index 1ece2c50042c62e421776a2f7b837f6a4cbfbd0d..5564d7b23e7cd9861fc90ab0c720ddb06f6a65ef 100644 (file)
@@ -465,6 +465,7 @@ static int sdhci_at91_remove(struct platform_device *pdev)
 static struct platform_driver sdhci_at91_driver = {
        .driver         = {
                .name   = "sdhci-at91",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_at91_dt_match,
                .pm     = &sdhci_at91_dev_pm_ops,
        },
index 45881b3099567ded18e0c13f728150153eb9bf6e..3a3340c9b8c9ac16abe85b1eaf852b2ac7d5a78b 100644 (file)
@@ -1468,6 +1468,7 @@ static int sdhci_esdhc_probe(struct platform_device *pdev)
 static struct platform_driver sdhci_esdhc_driver = {
        .driver = {
                .name = "sdhci-esdhc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_esdhc_of_match,
                .pm = &esdhc_of_dev_pm_ops,
        },
index da844a39af6e7a18adc0c7d7c267c125234bc7e8..12675797b2960b3f740b0a4b8fcca6e0911de34a 100644 (file)
@@ -80,6 +80,7 @@ MODULE_DEVICE_TABLE(of, sdhci_hlwd_of_match);
 static struct platform_driver sdhci_hlwd_driver = {
        .driver = {
                .name = "sdhci-hlwd",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_hlwd_of_match,
                .pm = &sdhci_pltfm_pmops,
        },
index 9282bc4b8c41bda12413c340e3152c4ba4b71676..f18906b5575f12eea18bd0aa5fefe7376829d352 100644 (file)
@@ -226,6 +226,7 @@ free:
 static struct platform_driver sdhci_pxav2_driver = {
        .driver         = {
                .name   = "sdhci-pxav2",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(sdhci_pxav2_of_match),
                .pm     = &sdhci_pltfm_pmops,
        },
index e55037ceda734ff0e581fc8e2eecb664d882363f..a6d89a3f194651c9a37ca33c5fa7023fc85bc92a 100644 (file)
@@ -567,6 +567,7 @@ static const struct dev_pm_ops sdhci_pxav3_pmops = {
 static struct platform_driver sdhci_pxav3_driver = {
        .driver         = {
                .name   = "sdhci-pxav3",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(sdhci_pxav3_of_match),
                .pm     = &sdhci_pxav3_pmops,
        },
index 080ced1e63f0ab073a247d9f15017dd22cfe76fd..cb5f87be753544a6c85f5206008cfd0b3d5791fb 100644 (file)
@@ -784,6 +784,7 @@ static struct platform_driver sdhci_s3c_driver = {
        .id_table       = sdhci_s3c_driver_ids,
        .driver         = {
                .name   = "s3c-sdhci",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(sdhci_s3c_dt_match),
                .pm     = &sdhci_s3c_pmops,
        },
index f4b05dd6c20a164b026f74c5d399982430cd31e7..e9b347b3af7e6611b19c6bad8ce4651593f93718 100644 (file)
@@ -220,6 +220,7 @@ MODULE_DEVICE_TABLE(of, sdhci_sirf_of_match);
 static struct platform_driver sdhci_sirf_driver = {
        .driver         = {
                .name   = "sdhci-sirf",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_sirf_of_match,
                .pm     = &sdhci_pltfm_pmops,
        },
index b4b63089a4e250eefb61937a18dfa073e5e44ec0..d463e2fd5b1a8bfe38bd09f825f135dde485fb8c 100644 (file)
@@ -181,6 +181,7 @@ MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
 static struct platform_driver sdhci_driver = {
        .driver = {
                .name   = "sdhci",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &sdhci_pm_ops,
                .of_match_table = of_match_ptr(sdhci_spear_id_table),
        },
index 1301cebfc3ea793004b7a1571ef8fb36ffce3c47..4e9ff3e828ba76f3b2dc46a8ecee99b3e0b897bf 100644 (file)
@@ -521,6 +521,7 @@ static struct platform_driver sdhci_st_driver = {
        .remove = sdhci_st_remove,
        .driver = {
                   .name = "sdhci-st",
+                  .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                   .pm = &sdhci_st_pmops,
                   .of_match_table = of_match_ptr(st_sdhci_match),
                  },
index 428cdc53c858388cf2c3be5e06261d3d7e558c5e..ed12aacb1c736475d73bbe874e3e77531545b07c 100644 (file)
@@ -1782,6 +1782,7 @@ static SIMPLE_DEV_PM_OPS(sdhci_tegra_dev_pm_ops, sdhci_tegra_suspend,
 static struct platform_driver sdhci_tegra_driver = {
        .driver         = {
                .name   = "sdhci-tegra",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sdhci_tegra_dt_match,
                .pm     = &sdhci_tegra_dev_pm_ops,
        },
index 4625cc071b61af737b577a19404c0da202cf1890..3f5977979cf25cf733758cd3527be0470acd8ed3 100644 (file)
@@ -219,6 +219,7 @@ MODULE_DEVICE_TABLE(acpi, f_sdh30_acpi_ids);
 static struct platform_driver sdhci_f_sdh30_driver = {
        .driver = {
                .name = "f_sdh30",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(f_sdh30_dt_ids),
                .acpi_match_table = ACPI_PTR(f_sdh30_acpi_ids),
                .pm     = &sdhci_pltfm_pmops,
index 9f53634aa41184c824deb2b46c644dbf3b7e07a6..e5e457037235ad122b1ea78c2788d456f9635e93 100644 (file)
@@ -1562,6 +1562,7 @@ static struct platform_driver sh_mmcif_driver = {
        .remove         = sh_mmcif_remove,
        .driver         = {
                .name   = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm     = &sh_mmcif_dev_pm_ops,
                .of_match_table = sh_mmcif_of_match,
        },
index 5e95bbc516444677336a5d657f780bba12c38d08..fc62773602ec853d20e42585e28b786b6d05d726 100644 (file)
@@ -1514,6 +1514,7 @@ static const struct dev_pm_ops sunxi_mmc_pm_ops = {
 static struct platform_driver sunxi_mmc_driver = {
        .driver = {
                .name   = "sunxi-mmc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(sunxi_mmc_of_match),
                .pm = &sunxi_mmc_pm_ops,
        },
index 757c90160ae4440a5a85368562fe1f232d3976f3..d2d3b8df1bbe4ea65c6d62daf34d1661e70f0197 100644 (file)
@@ -213,6 +213,7 @@ static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
 static struct platform_driver tmio_mmc_driver = {
        .driver = {
                .name = "tmio-mmc",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm = &tmio_mmc_dev_pm_ops,
        },
        .probe = tmio_mmc_probe,
index 7666c90054ae937d8de19831271477afa43ae50f..e2d5112d809dcb981092174b5135009fa786b0e6 100644 (file)
@@ -1890,6 +1890,7 @@ static struct platform_driver usdhi6_driver = {
        .remove         = usdhi6_remove,
        .driver         = {
                .name   = "usdhi6rol0",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = usdhi6_of_match,
        },
 };
index 67f917d6ecd3c9d7f58ca3148ed1c30ea1a4a63c..cd63ea865b77f1c004d939a76ec5f04f85d1d04d 100644 (file)
@@ -1905,6 +1905,7 @@ static struct platform_driver wbsd_driver = {
        .resume         = wbsd_platform_resume,
        .driver         = {
                .name   = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
 };
 
index 2c4ba1fa4bbfdbe056e77c2d8300acb5d75cf19e..cf10949fb0acc929c5ecbe487c0ac23252ffa6cd 100644 (file)
@@ -990,6 +990,7 @@ static struct platform_driver wmt_mci_driver = {
        .remove = wmt_mci_remove,
        .driver = {
                .name = DRIVER_NAME,
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .pm = wmt_mci_pm_ops,
                .of_match_table = wmt_mci_dt_ids,
        },