mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
mmc: dw_mmc-pltfm: use modern PM macros
Use the modern PM macros for the suspend and resume functions to be automatically dropped by the compiler when CONFIG_PM or CONFIG_PM_SLEEP are disabled, without having to use #ifdef guards. When this's done, remove all variant drivers' local pm definition and replace it with dw_mci_pltfm_pmops. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> [Ulf: Fixed conflict by dropping changes for dw_mmc-rockchip] Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
765f4836ec
commit
2c7fe99a71
|
|
@ -73,7 +73,7 @@ static struct platform_driver dw_mci_bluefield_pltfm_driver = {
|
|||
.name = "dwmmc_bluefield",
|
||||
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
||||
.of_match_table = dw_mci_bluefield_match,
|
||||
.pm = &dw_mci_pltfm_pmops,
|
||||
.pm = pm_ptr(&dw_mci_pltfm_pmops),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -455,11 +455,6 @@ static int dw_mci_k3_probe(struct platform_device *pdev)
|
|||
return dw_mci_pltfm_register(pdev, drv_data);
|
||||
}
|
||||
|
||||
static const struct dev_pm_ops dw_mci_k3_dev_pm_ops = {
|
||||
SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, pm_runtime_force_resume)
|
||||
RUNTIME_PM_OPS(dw_mci_runtime_suspend, dw_mci_runtime_resume, NULL)
|
||||
};
|
||||
|
||||
static struct platform_driver dw_mci_k3_pltfm_driver = {
|
||||
.probe = dw_mci_k3_probe,
|
||||
.remove = dw_mci_pltfm_remove,
|
||||
|
|
@ -467,7 +462,7 @@ static struct platform_driver dw_mci_k3_pltfm_driver = {
|
|||
.name = "dwmmc_k3",
|
||||
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
||||
.of_match_table = dw_mci_k3_match,
|
||||
.pm = pm_ptr(&dw_mci_k3_dev_pm_ops),
|
||||
.pm = pm_ptr(&dw_mci_pltfm_pmops),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
#include <linux/mmc/host.h>
|
||||
#include <linux/mmc/mmc.h>
|
||||
#include "dw_mmc.h"
|
||||
#include "dw_mmc-pltfm.h"
|
||||
|
||||
#define SYNOPSYS_DW_MCI_VENDOR_ID 0x700
|
||||
#define SYNOPSYS_DW_MCI_DEVICE_ID 0x1107
|
||||
|
|
@ -71,11 +72,6 @@ static void dw_mci_pci_remove(struct pci_dev *pdev)
|
|||
dw_mci_remove(host);
|
||||
}
|
||||
|
||||
static const struct dev_pm_ops dw_mci_pci_dev_pm_ops = {
|
||||
SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, pm_runtime_force_resume)
|
||||
RUNTIME_PM_OPS(dw_mci_runtime_suspend, dw_mci_runtime_resume, NULL)
|
||||
};
|
||||
|
||||
static const struct pci_device_id dw_mci_pci_id[] = {
|
||||
{ PCI_DEVICE(SYNOPSYS_DW_MCI_VENDOR_ID, SYNOPSYS_DW_MCI_DEVICE_ID) },
|
||||
{}
|
||||
|
|
@ -88,7 +84,7 @@ static struct pci_driver dw_mci_pci_driver = {
|
|||
.probe = dw_mci_pci_probe,
|
||||
.remove = dw_mci_pci_remove,
|
||||
.driver = {
|
||||
.pm = pm_ptr(&dw_mci_pci_dev_pm_ops),
|
||||
.pm = pm_ptr(&dw_mci_pltfm_pmops),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -57,9 +57,9 @@ int dw_mci_pltfm_register(struct platform_device *pdev,
|
|||
EXPORT_SYMBOL_GPL(dw_mci_pltfm_register);
|
||||
|
||||
const struct dev_pm_ops dw_mci_pltfm_pmops = {
|
||||
SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
|
||||
SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
|
||||
pm_runtime_force_resume)
|
||||
SET_RUNTIME_PM_OPS(dw_mci_runtime_suspend,
|
||||
RUNTIME_PM_OPS(dw_mci_runtime_suspend,
|
||||
dw_mci_runtime_resume,
|
||||
NULL)
|
||||
};
|
||||
|
|
|
|||
|
|
@ -3440,7 +3440,6 @@ void dw_mci_remove(struct dw_mci *host)
|
|||
}
|
||||
EXPORT_SYMBOL(dw_mci_remove);
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
int dw_mci_runtime_suspend(struct device *dev)
|
||||
{
|
||||
struct dw_mci *host = dev_get_drvdata(dev);
|
||||
|
|
@ -3526,7 +3525,6 @@ int dw_mci_runtime_resume(struct device *dev)
|
|||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(dw_mci_runtime_resume);
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
static int __init dw_mci_init(void)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -497,13 +497,8 @@ static inline void mci_fifo_l_writeq(void __iomem *addr, u64 value)
|
|||
extern struct dw_mci *dw_mci_alloc_host(struct device *device);
|
||||
extern int dw_mci_probe(struct dw_mci *host);
|
||||
extern void dw_mci_remove(struct dw_mci *host);
|
||||
#ifdef CONFIG_PM
|
||||
extern int dw_mci_runtime_suspend(struct device *device);
|
||||
extern int dw_mci_runtime_resume(struct device *device);
|
||||
#else
|
||||
static inline int dw_mci_runtime_suspend(struct device *device) { return -EOPNOTSUPP; }
|
||||
static inline int dw_mci_runtime_resume(struct device *device) { return -EOPNOTSUPP; }
|
||||
#endif
|
||||
|
||||
/**
|
||||
* dw_mci driver data - dw-mshc implementation specific driver data.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user