]> www.infradead.org Git - users/jedix/linux-maple.git/commit
drm/bridge: it6505: fix HDCP V match check is not performed correctly
authorHermes Wu <Hermes.wu@ite.com.tw>
Tue, 21 Jan 2025 07:01:51 +0000 (15:01 +0800)
committerRobert Foss <rfoss@kernel.org>
Thu, 6 Feb 2025 13:40:47 +0000 (14:40 +0100)
commita5072fc77fb9e38fa9fd883642c83c3720049159
tree379f597ded818765daa51d9043b502e10dc81bb6
parent93c7dd1b39444ebd5a6a98e56a363d7a4e646775
drm/bridge: it6505: fix HDCP V match check is not performed correctly

Fix a typo where V compare incorrectly compares av[] with av[] itself,
which can result in HDCP failure.

The loop of V compare is expected to iterate for 5 times
which compare V array form av[0][] to av[4][].
It should check loop counter reach the last statement "i == 5"
before return true

Fixes: 0989c02c7a5c ("drm/bridge: it6505: fix HDCP CTS compare V matching")
Signed-off-by: Hermes Wu <Hermes.wu@ite.com.tw>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Robert Foss <rfoss@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20250121-fix-hdcp-v-comp-v4-1-185f45c728dc@ite.com.tw
drivers/gpu/drm/bridge/ite-it6505.c