diff options
| author | 2019-12-17 15:05:29 -0800 | |
|---|---|---|
| committer | 2019-12-18 17:53:17 -0800 | |
| commit | d6f970f0dad6c053bf7a9be81e91cb95e4ff4af9 (patch) | |
| tree | 463fe3adb7feb8220d99a6f2cc631fec82355d5a | |
| parent | drm/i915/display: use clk_off name to avoid double negation (diff) | |
drm/i915/display: fix phy name
Pass the correct variable as argument.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Clinton Taylor <Clinton.A.Taylor@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191217230529.25092-3-lucas.demarchi@intel.com
| -rw-r--r-- | drivers/gpu/drm/i915/display/intel_ddi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c index 9d2b7244f7ca..c9ba7d7f3787 100644 --- a/drivers/gpu/drm/i915/display/intel_ddi.c +++ b/drivers/gpu/drm/i915/display/intel_ddi.c @@ -3022,7 +3022,7 @@ static void icl_sanitize_port_clk_off(struct drm_i915_private *dev_priv, continue; DRM_NOTE("PHY %c is disabled/in DSI mode with an ungated DDI clock, gate it\n", - phy_name(port)); + phy_name(phy)); val |= icl_dpclka_cfgcr0_clk_off(dev_priv, phy); I915_WRITE(ICL_DPCLKA_CFGCR0, val); } |
