Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 743b1e32 authored by Alex Deucher's avatar Alex Deucher Committed by Christian König
Browse files

drm/dp: make aux retries less chatty



Switch to debug only to avoid flooding the logs.
This mirrors the behavior in some other drivers.

Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Acked-by: default avatarChristian König <christian.koenig@amd.com>
parent dca0be0d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -402,7 +402,7 @@ static int drm_dp_dpcd_access(struct drm_dp_aux *aux, u8 request,
		}
	}

	DRM_ERROR("too many retries, giving up\n");
	DRM_DEBUG_KMS("too many retries, giving up\n");
	return -EIO;
}

@@ -656,7 +656,7 @@ static int drm_dp_i2c_do_msg(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
		}
	}

	DRM_ERROR("too many retries, giving up\n");
	DRM_DEBUG_KMS("too many retries, giving up\n");
	return -EREMOTEIO;
}