Commit 182a32bc authored by Suraj Kandpal's avatar Suraj Kandpal
Browse files

drm/xe/hdcp: Fix gsc structure check in fw check status



Fix the condition for gsc structure validity in
gsc_cs_status_check(). It needs to be an OR and not an AND
condition

Fixes: b4224f6b ("drm/xe/hdcp: Check GSC structure validity")
Signed-off-by: default avatarSuraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: default avatarMatt Roper <matthew.d.roper@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241025160834.8785-1-suraj.kandpal@intel.com
parent d9fa32dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ bool intel_hdcp_gsc_check_status(struct intel_display *display)
	struct xe_gsc *gsc = &gt->uc.gsc;
	bool ret = true;

	if (!gsc && !xe_uc_fw_is_enabled(&gsc->fw)) {
	if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
		drm_dbg_kms(&xe->drm,
			    "GSC Components not ready for HDCP2.x\n");
		return false;