All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amd/display: use a more accurate check in dm_helpers_dp_read_dpcd()
@ 2023-03-09 21:30 ` Hamza Mahfooz
  0 siblings, 0 replies; 11+ messages in thread
From: Hamza Mahfooz @ 2023-03-09 21:30 UTC (permalink / raw)
  To: amd-gfx
  Cc: Ian Chen, Leo Li, David Airlie, Qingqing Zhuo, Pan, Xinhui,
	Rodrigo Siqueira, linux-kernel, dri-devel, Hamza Mahfooz,
	Daniel Vetter, Wayne Lin, Alex Deucher, Harry Wentland,
	Christian König, Sung Joon Kim

We should be checking if drm_dp_dpcd_read() returns the size that we are
asking it to read instead of just checking if it is greater than zero.
Also, we should WARN_ON() here since this condition is only ever met, if
there is an issue worth investigating. So, compare the return value of
drm_dp_dpcd_read() to size and WARN_ON() if they aren't equal.

Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
---
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
index 8d598b322e5b..ed2ed7b1d869 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
@@ -511,8 +511,8 @@ bool dm_helpers_dp_read_dpcd(
 		return false;
 	}
 
-	return drm_dp_dpcd_read(&aconnector->dm_dp_aux.aux, address,
-			data, size) > 0;
+	return !WARN_ON(drm_dp_dpcd_read(&aconnector->dm_dp_aux.aux, address,
+					 data, size) != size);
 }
 
 bool dm_helpers_dp_write_dpcd(
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2023-03-20 20:25 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-09 21:30 [PATCH] drm/amd/display: use a more accurate check in dm_helpers_dp_read_dpcd() Hamza Mahfooz
2023-03-09 21:30 ` Hamza Mahfooz
2023-03-09 21:30 ` Hamza Mahfooz
2023-03-10 17:42 ` Rodrigo Siqueira Jordao
2023-03-10 17:42   ` Rodrigo Siqueira Jordao
2023-03-10 17:42   ` Rodrigo Siqueira Jordao
2023-03-10 17:48 ` Ville Syrjälä
2023-03-10 17:48   ` Ville Syrjälä
2023-03-10 17:51   ` Ville Syrjälä
2023-03-10 17:51     ` Ville Syrjälä
2023-03-20 20:25     ` Harry Wentland

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.