phy: qcom-qmp-combo: move pm ops
authorJohan Hovold <johan+linaro@kernel.org>
Mon, 14 Nov 2022 11:06:02 +0000 (12:06 +0100)
committerVinod Koul <vkoul@kernel.org>
Thu, 24 Nov 2022 17:16:51 +0000 (22:46 +0530)
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>
drivers/phy/qualcomm/phy-qcom-qmp-combo.c

index e7c8c44..2ac29b7 100644 (file)
@@ -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;