mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 10:59:18 -04:00
drm/amd/display: fix wrong statement in mst hpd debugfs
[why] Previous statement would always evaluate to true making it meaningless [how] Just check if a connector is MST by checking if its port exists. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Mikita Lipski <mikita.lipski@amd.com> Reviewed-by: Nicholas Kazlauskas <Nicholas.Kazlauskas@amd.com> Acked-by: Wayne Lin <waynelin@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
831c95c966
commit
abf1f863e0
@@ -3030,7 +3030,7 @@ static int trigger_hpd_mst_set(void *data, u64 val)
|
||||
if (!aconnector->dc_link)
|
||||
continue;
|
||||
|
||||
if (!(aconnector->port && &aconnector->mst_port->mst_mgr))
|
||||
if (!aconnector->mst_port)
|
||||
continue;
|
||||
|
||||
link = aconnector->dc_link;
|
||||
|
||||
Reference in New Issue
Block a user