Message ID | 20200903162412.6.Ib121debfb18e5f923a3cd38fe9c36aa086c650c5@changeid (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | None | expand |
Douglas Anderson writes: > 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 have been added after kernel 5.4. > > Signed-off-by: Douglas Anderson <dianders@chromium.org> > --- > > drivers/mmc/host/meson-mx-sdhc-mmc.c | 1 + > drivers/mmc/host/owl-mmc.c | 1 + > drivers/mmc/host/sdhci-esdhc-mcf.c | 1 + > drivers/mmc/host/sdhci-milbeaut.c | 1 + > drivers/mmc/host/sdhci-of-sparx5.c | 1 + > 5 files changed, 5 insertions(+) > [snip] > diff --git a/drivers/mmc/host/sdhci-of-sparx5.c b/drivers/mmc/host/sdhci-of-sparx5.c > index 747f108a0ace..28e4ee69e100 100644 > --- a/drivers/mmc/host/sdhci-of-sparx5.c > +++ b/drivers/mmc/host/sdhci-of-sparx5.c > @@ -255,6 +255,7 @@ MODULE_DEVICE_TABLE(of, sdhci_sparx5_of_match); > static struct platform_driver sdhci_sparx5_driver = { > .driver = { > .name = "sdhci-sparx5", > + .probe_type = PROBE_PREFER_ASYNCHRONOUS, > .of_match_table = sdhci_sparx5_of_match, > .pm = &sdhci_pltfm_pmops, > }, Acked-by: Lars Povlsen <lars.povlsen@microchip.com>
On Fri, Sep 4, 2020 at 1:25 AM Douglas Anderson <dianders@chromium.org> wrote: > 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 have been added after kernel 5.4. > > Signed-off-by: Douglas Anderson <dianders@chromium.org> > --- > > drivers/mmc/host/meson-mx-sdhc-mmc.c | 1 + > drivers/mmc/host/owl-mmc.c | 1 + > drivers/mmc/host/sdhci-esdhc-mcf.c | 1 + > drivers/mmc/host/sdhci-milbeaut.c | 1 + > drivers/mmc/host/sdhci-of-sparx5.c | 1 + > 5 files changed, 5 insertions(+) [snip] > > > diff --git a/drivers/mmc/host/sdhci-esdhc-mcf.c b/drivers/mmc/host/sdhci-esdhc-mcf.c > index 71bf086a9812..ca7a1690b2a8 100644 > --- a/drivers/mmc/host/sdhci-esdhc-mcf.c > +++ b/drivers/mmc/host/sdhci-esdhc-mcf.c > @@ -509,6 +509,7 @@ static int sdhci_esdhc_mcf_remove(struct platform_device *pdev) > static struct platform_driver sdhci_esdhc_mcf_driver = { > .driver = { > .name = "sdhci-esdhc-mcf", > + .probe_type = PROBE_PREFER_ASYNCHRONOUS, > }, > .probe = sdhci_esdhc_mcf_probe, > .remove = sdhci_esdhc_mcf_remove, > Acked-by: Angelo Dureghello <angelo.dureghello@timesys.com>
On 0903, Douglas Anderson wrote: > 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 have been added after kernel 5.4. > Backporting made easy ;) > Signed-off-by: Douglas Anderson <dianders@chromium.org> For owl-mmc, Acked-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Thanks, Mani > --- > > drivers/mmc/host/meson-mx-sdhc-mmc.c | 1 + > drivers/mmc/host/owl-mmc.c | 1 + > drivers/mmc/host/sdhci-esdhc-mcf.c | 1 + > drivers/mmc/host/sdhci-milbeaut.c | 1 + > drivers/mmc/host/sdhci-of-sparx5.c | 1 + > 5 files changed, 5 insertions(+) > > diff --git a/drivers/mmc/host/meson-mx-sdhc-mmc.c b/drivers/mmc/host/meson-mx-sdhc-mmc.c > index 53e3f6a4245a..7cd9c0ec2fcf 100644 > --- a/drivers/mmc/host/meson-mx-sdhc-mmc.c > +++ b/drivers/mmc/host/meson-mx-sdhc-mmc.c > @@ -903,6 +903,7 @@ static struct platform_driver meson_mx_sdhc_driver = { > .remove = meson_mx_sdhc_remove, > .driver = { > .name = "meson-mx-sdhc", > + .probe_type = PROBE_PREFER_ASYNCHRONOUS, > .of_match_table = of_match_ptr(meson_mx_sdhc_of_match), > }, > }; > diff --git a/drivers/mmc/host/owl-mmc.c b/drivers/mmc/host/owl-mmc.c > index df43f42855e2..ccf214a89eda 100644 > --- a/drivers/mmc/host/owl-mmc.c > +++ b/drivers/mmc/host/owl-mmc.c > @@ -689,6 +689,7 @@ MODULE_DEVICE_TABLE(of, owl_mmc_of_match); > static struct platform_driver owl_mmc_driver = { > .driver = { > .name = "owl_mmc", > + .probe_type = PROBE_PREFER_ASYNCHRONOUS, > .of_match_table = owl_mmc_of_match, > }, > .probe = owl_mmc_probe, > diff --git a/drivers/mmc/host/sdhci-esdhc-mcf.c b/drivers/mmc/host/sdhci-esdhc-mcf.c > index 71bf086a9812..ca7a1690b2a8 100644 > --- a/drivers/mmc/host/sdhci-esdhc-mcf.c > +++ b/drivers/mmc/host/sdhci-esdhc-mcf.c > @@ -509,6 +509,7 @@ static int sdhci_esdhc_mcf_remove(struct platform_device *pdev) > static struct platform_driver sdhci_esdhc_mcf_driver = { > .driver = { > .name = "sdhci-esdhc-mcf", > + .probe_type = PROBE_PREFER_ASYNCHRONOUS, > }, > .probe = sdhci_esdhc_mcf_probe, > .remove = sdhci_esdhc_mcf_remove, > diff --git a/drivers/mmc/host/sdhci-milbeaut.c b/drivers/mmc/host/sdhci-milbeaut.c > index 4e7cc0680f94..148b37ac6564 100644 > --- a/drivers/mmc/host/sdhci-milbeaut.c > +++ b/drivers/mmc/host/sdhci-milbeaut.c > @@ -333,6 +333,7 @@ static int sdhci_milbeaut_remove(struct platform_device *pdev) > static struct platform_driver sdhci_milbeaut_driver = { > .driver = { > .name = "sdhci-milbeaut", > + .probe_type = PROBE_PREFER_ASYNCHRONOUS, > .of_match_table = of_match_ptr(mlb_dt_ids), > }, > .probe = sdhci_milbeaut_probe, > diff --git a/drivers/mmc/host/sdhci-of-sparx5.c b/drivers/mmc/host/sdhci-of-sparx5.c > index 747f108a0ace..28e4ee69e100 100644 > --- a/drivers/mmc/host/sdhci-of-sparx5.c > +++ b/drivers/mmc/host/sdhci-of-sparx5.c > @@ -255,6 +255,7 @@ MODULE_DEVICE_TABLE(of, sdhci_sparx5_of_match); > static struct platform_driver sdhci_sparx5_driver = { > .driver = { > .name = "sdhci-sparx5", > + .probe_type = PROBE_PREFER_ASYNCHRONOUS, > .of_match_table = sdhci_sparx5_of_match, > .pm = &sdhci_pltfm_pmops, > }, > -- > 2.28.0.526.ge36021eeef-goog >
diff --git a/drivers/mmc/host/meson-mx-sdhc-mmc.c b/drivers/mmc/host/meson-mx-sdhc-mmc.c index 53e3f6a4245a..7cd9c0ec2fcf 100644 --- a/drivers/mmc/host/meson-mx-sdhc-mmc.c +++ b/drivers/mmc/host/meson-mx-sdhc-mmc.c @@ -903,6 +903,7 @@ static struct platform_driver meson_mx_sdhc_driver = { .remove = meson_mx_sdhc_remove, .driver = { .name = "meson-mx-sdhc", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, .of_match_table = of_match_ptr(meson_mx_sdhc_of_match), }, }; diff --git a/drivers/mmc/host/owl-mmc.c b/drivers/mmc/host/owl-mmc.c index df43f42855e2..ccf214a89eda 100644 --- a/drivers/mmc/host/owl-mmc.c +++ b/drivers/mmc/host/owl-mmc.c @@ -689,6 +689,7 @@ MODULE_DEVICE_TABLE(of, owl_mmc_of_match); static struct platform_driver owl_mmc_driver = { .driver = { .name = "owl_mmc", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, .of_match_table = owl_mmc_of_match, }, .probe = owl_mmc_probe, diff --git a/drivers/mmc/host/sdhci-esdhc-mcf.c b/drivers/mmc/host/sdhci-esdhc-mcf.c index 71bf086a9812..ca7a1690b2a8 100644 --- a/drivers/mmc/host/sdhci-esdhc-mcf.c +++ b/drivers/mmc/host/sdhci-esdhc-mcf.c @@ -509,6 +509,7 @@ static int sdhci_esdhc_mcf_remove(struct platform_device *pdev) static struct platform_driver sdhci_esdhc_mcf_driver = { .driver = { .name = "sdhci-esdhc-mcf", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, }, .probe = sdhci_esdhc_mcf_probe, .remove = sdhci_esdhc_mcf_remove, diff --git a/drivers/mmc/host/sdhci-milbeaut.c b/drivers/mmc/host/sdhci-milbeaut.c index 4e7cc0680f94..148b37ac6564 100644 --- a/drivers/mmc/host/sdhci-milbeaut.c +++ b/drivers/mmc/host/sdhci-milbeaut.c @@ -333,6 +333,7 @@ static int sdhci_milbeaut_remove(struct platform_device *pdev) static struct platform_driver sdhci_milbeaut_driver = { .driver = { .name = "sdhci-milbeaut", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, .of_match_table = of_match_ptr(mlb_dt_ids), }, .probe = sdhci_milbeaut_probe, diff --git a/drivers/mmc/host/sdhci-of-sparx5.c b/drivers/mmc/host/sdhci-of-sparx5.c index 747f108a0ace..28e4ee69e100 100644 --- a/drivers/mmc/host/sdhci-of-sparx5.c +++ b/drivers/mmc/host/sdhci-of-sparx5.c @@ -255,6 +255,7 @@ MODULE_DEVICE_TABLE(of, sdhci_sparx5_of_match); static struct platform_driver sdhci_sparx5_driver = { .driver = { .name = "sdhci-sparx5", + .probe_type = PROBE_PREFER_ASYNCHRONOUS, .of_match_table = sdhci_sparx5_of_match, .pm = &sdhci_pltfm_pmops, },
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 have been added after kernel 5.4. Signed-off-by: Douglas Anderson <dianders@chromium.org> --- drivers/mmc/host/meson-mx-sdhc-mmc.c | 1 + drivers/mmc/host/owl-mmc.c | 1 + drivers/mmc/host/sdhci-esdhc-mcf.c | 1 + drivers/mmc/host/sdhci-milbeaut.c | 1 + drivers/mmc/host/sdhci-of-sparx5.c | 1 + 5 files changed, 5 insertions(+)