Commit fa243f64 authored by Ulf Hansson's avatar Ulf Hansson

mmc: sdhci-pltfm: Drop define for SDHCI_PLTFM_PMOPS

Due to previous changes this define has no longer a purpose. Instead move
the sdhci-pltfm drivers over to use the exported struct sdhci_pltfm_pmops.
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 2b330999
...@@ -326,7 +326,7 @@ static int sdhci_bcm_kona_probe(struct platform_device *pdev) ...@@ -326,7 +326,7 @@ static int sdhci_bcm_kona_probe(struct platform_device *pdev)
static struct platform_driver sdhci_bcm_kona_driver = { static struct platform_driver sdhci_bcm_kona_driver = {
.driver = { .driver = {
.name = "sdhci-kona", .name = "sdhci-kona",
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
.of_match_table = sdhci_bcm_kona_of_match, .of_match_table = sdhci_bcm_kona_of_match,
}, },
.probe = sdhci_bcm_kona_probe, .probe = sdhci_bcm_kona_probe,
......
...@@ -101,7 +101,7 @@ static int sdhci_cns3xxx_probe(struct platform_device *pdev) ...@@ -101,7 +101,7 @@ static int sdhci_cns3xxx_probe(struct platform_device *pdev)
static struct platform_driver sdhci_cns3xxx_driver = { static struct platform_driver sdhci_cns3xxx_driver = {
.driver = { .driver = {
.name = "sdhci-cns3xxx", .name = "sdhci-cns3xxx",
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
}, },
.probe = sdhci_cns3xxx_probe, .probe = sdhci_cns3xxx_probe,
.remove = sdhci_pltfm_unregister, .remove = sdhci_pltfm_unregister,
......
...@@ -117,7 +117,7 @@ MODULE_DEVICE_TABLE(of, sdhci_dove_of_match_table); ...@@ -117,7 +117,7 @@ MODULE_DEVICE_TABLE(of, sdhci_dove_of_match_table);
static struct platform_driver sdhci_dove_driver = { static struct platform_driver sdhci_dove_driver = {
.driver = { .driver = {
.name = "sdhci-dove", .name = "sdhci-dove",
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
.of_match_table = sdhci_dove_of_match_table, .of_match_table = sdhci_dove_of_match_table,
}, },
.probe = sdhci_dove_probe, .probe = sdhci_dove_probe,
......
...@@ -260,7 +260,7 @@ static struct platform_driver sdhci_iproc_driver = { ...@@ -260,7 +260,7 @@ static struct platform_driver sdhci_iproc_driver = {
.driver = { .driver = {
.name = "sdhci-iproc", .name = "sdhci-iproc",
.of_match_table = sdhci_iproc_of_match, .of_match_table = sdhci_iproc_of_match,
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
}, },
.probe = sdhci_iproc_probe, .probe = sdhci_iproc_probe,
.remove = sdhci_pltfm_unregister, .remove = sdhci_pltfm_unregister,
......
...@@ -85,7 +85,7 @@ static struct platform_driver sdhci_hlwd_driver = { ...@@ -85,7 +85,7 @@ static struct platform_driver sdhci_hlwd_driver = {
.driver = { .driver = {
.name = "sdhci-hlwd", .name = "sdhci-hlwd",
.of_match_table = sdhci_hlwd_of_match, .of_match_table = sdhci_hlwd_of_match,
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
}, },
.probe = sdhci_hlwd_probe, .probe = sdhci_hlwd_probe,
.remove = sdhci_pltfm_unregister, .remove = sdhci_pltfm_unregister,
......
...@@ -110,6 +110,5 @@ static inline void *sdhci_pltfm_priv(struct sdhci_pltfm_host *host) ...@@ -110,6 +110,5 @@ static inline void *sdhci_pltfm_priv(struct sdhci_pltfm_host *host)
} }
extern const struct dev_pm_ops sdhci_pltfm_pmops; extern const struct dev_pm_ops sdhci_pltfm_pmops;
#define SDHCI_PLTFM_PMOPS (&sdhci_pltfm_pmops)
#endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */ #endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */
...@@ -252,7 +252,7 @@ static struct platform_driver sdhci_pxav2_driver = { ...@@ -252,7 +252,7 @@ static struct platform_driver sdhci_pxav2_driver = {
.driver = { .driver = {
.name = "sdhci-pxav2", .name = "sdhci-pxav2",
.of_match_table = of_match_ptr(sdhci_pxav2_of_match), .of_match_table = of_match_ptr(sdhci_pxav2_of_match),
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
}, },
.probe = sdhci_pxav2_probe, .probe = sdhci_pxav2_probe,
.remove = sdhci_pxav2_remove, .remove = sdhci_pxav2_remove,
......
...@@ -483,7 +483,7 @@ static struct platform_driver sdhci_tegra_driver = { ...@@ -483,7 +483,7 @@ static struct platform_driver sdhci_tegra_driver = {
.driver = { .driver = {
.name = "sdhci-tegra", .name = "sdhci-tegra",
.of_match_table = sdhci_tegra_dt_match, .of_match_table = sdhci_tegra_dt_match,
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
}, },
.probe = sdhci_tegra_probe, .probe = sdhci_tegra_probe,
.remove = sdhci_pltfm_unregister, .remove = sdhci_pltfm_unregister,
......
...@@ -222,7 +222,7 @@ static struct platform_driver sdhci_f_sdh30_driver = { ...@@ -222,7 +222,7 @@ static struct platform_driver sdhci_f_sdh30_driver = {
.driver = { .driver = {
.name = "f_sdh30", .name = "f_sdh30",
.of_match_table = f_sdh30_dt_ids, .of_match_table = f_sdh30_dt_ids,
.pm = SDHCI_PLTFM_PMOPS, .pm = &sdhci_pltfm_pmops,
}, },
.probe = sdhci_f_sdh30_probe, .probe = sdhci_f_sdh30_probe,
.remove = sdhci_f_sdh30_remove, .remove = sdhci_f_sdh30_remove,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment