Message ID | 20180405095000.9756-19-enric.balletbo@collabora.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, [This is an automated email] This commit has been processed by the -stable helper bot and determined to be a high probability candidate for -stable trees. (score: 13.9476) The bot has tested the following trees: v4.16, v4.15.15, v4.14.32, v4.9.92, v4.4.126. v4.16: Failed to apply! Possible dependencies: 533122d0d37a ("drm/bridge: analogix_dp: Ensure edp is disabled when shutting down the panel") v4.15.15: Failed to apply! Possible dependencies: 533122d0d37a ("drm/bridge: analogix_dp: Ensure edp is disabled when shutting down the panel") v4.14.32: Failed to apply! Possible dependencies: 533122d0d37a ("drm/bridge: analogix_dp: Ensure edp is disabled when shutting down the panel") v4.9.92: Failed to apply! Possible dependencies: 533122d0d37a ("drm/bridge: analogix_dp: Ensure edp is disabled when shutting down the panel") v4.4.126: Failed to apply! Possible dependencies: 3424e3a4f844 ("drm: bridge: analogix/dp: split exynos dp driver to bridge directory") 533122d0d37a ("drm/bridge: analogix_dp: Ensure edp is disabled when shutting down the panel") Please let us know if you'd like to have this patch included in a stable tree. -- Thanks, Sasha
diff --git a/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c b/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c index 69b2c16e5776..a260de4f0bd8 100644 --- a/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c +++ b/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c @@ -1337,12 +1337,13 @@ static void analogix_dp_bridge_disable(struct drm_bridge *bridge) } disable_irq(dp->irq); - analogix_dp_set_analog_power_down(dp, POWER_ALL, 1); - phy_power_off(dp->phy); if (dp->plat_data->power_off) dp->plat_data->power_off(dp->plat_data); + analogix_dp_set_analog_power_down(dp, POWER_ALL, 1); + phy_power_off(dp->phy); + clk_disable_unprepare(dp->clock); pm_runtime_put_sync(dp->dev);