On Wed, 18 Dec 2024 12:34, Liankun Yang <[email protected]> wrote:
>Returns the number of bytes transferred (1) on success.
Hi Liankun,

I'm not sure this statement above is true, you are not returning the
number of transferred bytes?


Aside of that little nitpick

Reviewed-by: Guillaume Ranquet <[email protected]>

>Check the return value to confirm that AUX communication is successful.
>
>Fixes: f70ac097a2cf ("drm/mediatek: Add MT8195 Embedded DisplayPort driver")
>
>Signed-off-by: Liankun Yang <[email protected]>
>---
>Changes in V3:
>- Using drm_dp_read_sink_count() to improve patch.
>Per suggestion from the previous thread:
>https://patchwork.kernel.org/project/linux-mediatek/patch/[email protected]/
>
>Changes in V2:
>- Modify Fixes in Commit Message.
>Per suggestion from the previous thread:
>https://patchwork.kernel.org/project/linux-mediatek/patch/[email protected]/
>---
> drivers/gpu/drm/mediatek/mtk_dp.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
>diff --git a/drivers/gpu/drm/mediatek/mtk_dp.c 
>b/drivers/gpu/drm/mediatek/mtk_dp.c
>index 36713c176cfc..b26dad8783be 100644
>--- a/drivers/gpu/drm/mediatek/mtk_dp.c
>+++ b/drivers/gpu/drm/mediatek/mtk_dp.c
>@@ -2100,7 +2100,6 @@ static enum drm_connector_status 
>mtk_dp_bdg_detect(struct drm_bridge *bridge)
>       struct mtk_dp *mtk_dp = mtk_dp_from_bridge(bridge);
>       enum drm_connector_status ret = connector_status_disconnected;
>       bool enabled = mtk_dp->enabled;
>-      u8 sink_count = 0;
>
>       if (!mtk_dp->train_info.cable_plugged_in)
>               return ret;
>@@ -2115,8 +2114,8 @@ static enum drm_connector_status 
>mtk_dp_bdg_detect(struct drm_bridge *bridge)
>        * function, we just need to check the HPD connection to check
>        * whether we connect to a sink device.
>        */
>-      drm_dp_dpcd_readb(&mtk_dp->aux, DP_SINK_COUNT, &sink_count);
>-      if (DP_GET_SINK_COUNT(sink_count))
>+
>+      if (drm_dp_read_sink_count(&mtk_dp->aux))
>               ret = connector_status_connected;
>
>       if (!enabled)
>--
>2.45.2

Reply via email to