Re: [Freedreno] [PATCH v2 1/8] drm/msm/dpu: fix dp audio condition

2022-02-15 Thread Stephen Boyd
Quoting Dmitry Baryshkov (2022-02-15 06:16:36) > DP audio enablement code which is comparing intf_type, > DRM_MODE_ENCODER_TMDS (= 2) with DRM_MODE_CONNECTOR_DisplayPort (= 10). > Which would never succeed. Fix it to check for DRM_MODE_ENCODER_TMDS. > > Fixes: d13e36d7d222 ("drm/msm/dp: add audio s

Re: [Freedreno] [PATCH v2 1/8] drm/msm/dpu: fix dp audio condition

2022-02-15 Thread Abhinav Kumar
On 2/15/2022 6:16 AM, Dmitry Baryshkov wrote: DP audio enablement code which is comparing intf_type, DRM_MODE_ENCODER_TMDS (= 2) with DRM_MODE_CONNECTOR_DisplayPort (= 10). Which would never succeed. Fix it to check for DRM_MODE_ENCODER_TMDS. Fixes: d13e36d7d222 ("drm/msm/dp: add audio suppor

Re: [Freedreno] [PATCH v2 1/8] drm/msm/dpu: fix dp audio condition

2022-02-15 Thread Bjorn Andersson
On Tue 15 Feb 08:16 CST 2022, Dmitry Baryshkov wrote: > DP audio enablement code which is comparing intf_type, > DRM_MODE_ENCODER_TMDS (= 2) with DRM_MODE_CONNECTOR_DisplayPort (= 10). > Which would never succeed. Fix it to check for DRM_MODE_ENCODER_TMDS. > > Fixes: d13e36d7d222 ("drm/msm/dp: ad

[Freedreno] [PATCH v2 1/8] drm/msm/dpu: fix dp audio condition

2022-02-15 Thread Dmitry Baryshkov
DP audio enablement code which is comparing intf_type, DRM_MODE_ENCODER_TMDS (= 2) with DRM_MODE_CONNECTOR_DisplayPort (= 10). Which would never succeed. Fix it to check for DRM_MODE_ENCODER_TMDS. Fixes: d13e36d7d222 ("drm/msm/dp: add audio support for Display Port on MSM") Signed-off-by: Dmitry B