diff options
author | Douglas Anderson <dianders@chromium.org> | 2020-09-04 01:24:37 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2020-09-07 14:24:21 +0200 |
commit | 2a99f3fa85eaa79c332945a256ff63aad1fd0b9c (patch) | |
tree | 1f0786e42e1d1cd94dcaf8a3ffb967aa3664191a /drivers/mmc/host/sdhci-pic32.c | |
parent | mmc: Set PROBE_PREFER_ASYNCHRONOUS for drivers that existed in v4.4 (diff) | |
download | linux-2a99f3fa85eaa79c332945a256ff63aad1fd0b9c.tar.xz linux-2a99f3fa85eaa79c332945a256ff63aad1fd0b9c.zip |
mmc: Set PROBE_PREFER_ASYNCHRONOUS for drivers that existed in v4.9
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.9 timeframe.
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20200903162412.2.I226782b43191ce367fa3bc1c907c29f571890412@changeid
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/sdhci-pic32.c')
-rw-r--r-- | drivers/mmc/host/sdhci-pic32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-pic32.c b/drivers/mmc/host/sdhci-pic32.c index a11e6397d4ff..6ce1519ae177 100644 --- a/drivers/mmc/host/sdhci-pic32.c +++ b/drivers/mmc/host/sdhci-pic32.c @@ -241,6 +241,7 @@ MODULE_DEVICE_TABLE(of, pic32_sdhci_id_table); static struct platform_driver pic32_sdhci_driver = { .driver = { .name = "pic32-sdhci", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, .of_match_table = of_match_ptr(pic32_sdhci_id_table), }, .probe = pic32_sdhci_probe, |