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 <subhashj@codeaurora.org>
This commit is contained in:
parent
687a4eb82b
commit
bbbf454942
1 changed files with 8 additions and 0 deletions
|
@ -113,6 +113,14 @@ struct phy *ufs_qcom_phy_generic_probe(struct platform_device *pdev,
|
||||||
goto out;
|
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->phy_spec_ops = phy_spec_ops;
|
||||||
common_cfg->dev = dev;
|
common_cfg->dev = dev;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue