From 6daf9e01d1697410cb7c9efaac3e9992733efd66 Mon Sep 17 00:00:00 2001 From: hwangjae lee Date: Tue, 8 Jan 2019 16:44:22 +0900 Subject: [PATCH] [RAMEN9610-10507][9610] phy: phy driver is registered to no_callback functon PHY driver doesn't use callback function about pm_runtime. However PHY driver isn't registered no_callback function. So fixed it. Change-Id: I93d642d70bb7ef02f442743b209c0b3392aa3fd2 Signed-off-by: hwangjae lee Signed-off-by: ChiHun Won --- drivers/phy/samsung/phy-exynos8895-mipi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/phy/samsung/phy-exynos8895-mipi.c b/drivers/phy/samsung/phy-exynos8895-mipi.c index 9243abfb38ca..e7890a376565 100644 --- a/drivers/phy/samsung/phy-exynos8895-mipi.c +++ b/drivers/phy/samsung/phy-exynos8895-mipi.c @@ -411,6 +411,8 @@ static int exynos_mipi_phy_probe(struct platform_device *pdev) return PTR_ERR(generic_phy); } + pm_runtime_no_callbacks(&generic_phy->dev); + state->phys[i].index = i; state->phys[i].phy = generic_phy; state->phys[i].data = phy_data; -- 2.20.1