Commit 3fb0501f authored by Clint Taylor's avatar Clint Taylor Committed by Matt Roper
Browse files

drm/i915/display/dp: Reduce log level for SOURCE OUI write failures



Some devices NAK DPCD writes to the SOURCE OUI (0x300) DPCD registers.
Reduce the log level priority to prevent dmesg noise for these devices.

Signed-off-by: default avatarClint Taylor <clinton.a.taylor@intel.com>
Reviewed-by: default avatarSai Teja Pottumuttu <sai.teja.pottumuttu@intel.com>
Signed-off-by: default avatarMatt Roper <matthew.d.roper@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241004210816.3976058-1-clinton.a.taylor@intel.com
parent 654c4ad1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3423,7 +3423,7 @@ intel_edp_init_source_oui(struct intel_dp *intel_dp, bool careful)
	}

	if (drm_dp_dpcd_write(&intel_dp->aux, DP_SOURCE_OUI, oui, sizeof(oui)) < 0)
		drm_err(&i915->drm, "Failed to write source OUI\n");
		drm_info(&i915->drm, "Failed to write source OUI\n");

	intel_dp->last_oui_write = jiffies;
}