From bbbf454942d755befde865d6c92b985b76cde9f0 Mon Sep 17 00:00:00 2001 From: Subhash Jadavani Date: Tue, 14 Mar 2017 13:02:25 -0700 Subject: [PATCH] phy: qcom-ufs: set no runtime PM callbacks flag UFS PHY power management is managed by its parent (UFS host controller) hence set the no runtime PM callbacks flag on UFS PHY device to avoid any accidental attempt to call the PM callbacks for PHY device. Change-Id: I06e6b140a98233e30d406754f0cdcdd27c834357 Signed-off-by: Subhash Jadavani --- drivers/phy/phy-qcom-ufs.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/phy/phy-qcom-ufs.c b/drivers/phy/phy-qcom-ufs.c index c3cb57ed6083..1e3e175d3e8d 100644 --- a/drivers/phy/phy-qcom-ufs.c +++ b/drivers/phy/phy-qcom-ufs.c @@ -113,6 +113,14 @@ struct phy *ufs_qcom_phy_generic_probe(struct platform_device *pdev, goto out; } + /* + * UFS PHY power management is managed by its parent (UFS host + * controller) hence set the no the no runtime PM callbacks flag + * on UFS PHY device to avoid any accidental attempt to call the + * PM callbacks for PHY device. + */ + pm_runtime_no_callbacks(&generic_phy->dev); + common_cfg->phy_spec_ops = phy_spec_ops; common_cfg->dev = dev;