mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08: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.
Fixes: 41efcd3879
("drm/amd/display: Add MST capability to trigger_hotplug interface")
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:
parent
d7b4a6077e
commit
3cbae5abfa
@ -3012,7 +3012,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;
|
||||
|
Loading…
Reference in New Issue
Block a user