summaryrefslogtreecommitdiffstats
path: root/drivers/phy
diff options
context:
space:
mode:
authorJohan Hovold <johan+linaro@kernel.org>2022-11-14 12:06:02 +0100
committerVinod Koul <vkoul@kernel.org>2022-11-24 22:46:51 +0530
commit987a505fa7d79691013ec4bd325ecc5664781c81 (patch)
tree41ca529d74829f270449ec1ffecb58dde9d352d8 /drivers/phy
parent5c5f9fbc15aa58c1bac22724f429e6e399a2f2b5 (diff)
downloadlinux-stable-987a505fa7d79691013ec4bd325ecc5664781c81.tar.gz
linux-stable-987a505fa7d79691013ec4bd325ecc5664781c81.tar.bz2
linux-stable-987a505fa7d79691013ec4bd325ecc5664781c81.zip
phy: qcom-qmp-combo: move pm ops
Move the PM ops structure next to the implementation to keep the driver callbacks grouped. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Johan Hovold <johan+linaro@kernel.org> Link: https://lore.kernel.org/r/20221114110621.4639-4-johan+linaro@kernel.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/qualcomm/phy-qcom-qmp-combo.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/phy/qualcomm/phy-qcom-qmp-combo.c b/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
index e7c8c4417142..2ac29b71d3b7 100644
--- a/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
+++ b/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
@@ -2216,6 +2216,11 @@ static int __maybe_unused qmp_combo_runtime_resume(struct device *dev)
return 0;
}
+static const struct dev_pm_ops qmp_combo_pm_ops = {
+ SET_RUNTIME_PM_OPS(qmp_combo_runtime_suspend,
+ qmp_combo_runtime_resume, NULL)
+};
+
static int qmp_combo_vreg_init(struct device *dev, const struct qmp_phy_cfg *cfg)
{
struct qcom_qmp *qmp = dev_get_drvdata(dev);
@@ -2646,11 +2651,6 @@ static int qmp_combo_create(struct device *dev, struct device_node *np, int id,
return 0;
}
-static const struct dev_pm_ops qmp_combo_pm_ops = {
- SET_RUNTIME_PM_OPS(qmp_combo_runtime_suspend,
- qmp_combo_runtime_resume, NULL)
-};
-
static int qmp_combo_probe(struct platform_device *pdev)
{
struct qcom_qmp *qmp;