drm: msm: dp: skip audio notify wait for completion

Skip the wait on audio subsystem response in case of external display
connect event.

Change-Id: Id7a0ac48f540f025293717e60c28967b83ad46ee
Signed-off-by: RAJAT GUPTA <rajatgu@codeaurora.org>
tirimbino
RAJAT GUPTA 5 years ago committed by Gerrit - the friendly Code Review server
parent a33d43acb3
commit c5082f237f
  1. 3
      drivers/gpu/drm/msm/dp/dp_audio.c

@ -672,6 +672,9 @@ static int dp_audio_notify(struct dp_audio_private *audio, u32 state)
if (atomic_read(&audio->acked))
goto end;
if (state == EXT_DISPLAY_CABLE_CONNECT)
goto end;
rc = wait_for_completion_timeout(&audio->hpd_comp, HZ * 4);
if (!rc) {
pr_err("timeout. state=%d err=%d\n", state, rc);

Loading…
Cancel
Save