Skip to content

Commit 864787d

Browse files
committed
drm/1915/dpio: Stop using intel_de_wait_fw_ms()
_bxt_dpio_phy_init() doesn't us the _fw() register accessors for anything else, so stop using them for the register polling as well. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patch.msgid.link/20251110172756.2132-12-ville.syrjala@linux.intel.com Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com>
1 parent 6be05d5 commit 864787d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/gpu/drm/i915/display/intel_dpio_phy.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,8 @@ static void _bxt_dpio_phy_init(struct intel_display *display, enum dpio_phy phy)
427427
* The flag should get set in 100us according to the HW team, but
428428
* use 1ms due to occasional timeouts observed with that.
429429
*/
430-
if (intel_de_wait_fw_ms(display, BXT_PORT_CL1CM_DW0(phy),
431-
PHY_RESERVED | PHY_POWER_GOOD, PHY_POWER_GOOD, 1, NULL))
430+
if (intel_de_wait_ms(display, BXT_PORT_CL1CM_DW0(phy),
431+
PHY_RESERVED | PHY_POWER_GOOD, PHY_POWER_GOOD, 1, NULL))
432432
drm_err(display->drm, "timeout during PHY%d power on\n",
433433
phy);
434434

0 commit comments

Comments
 (0)