Commit 978ffac8 authored by José Expósito's avatar José Expósito Committed by Alex Deucher

drm/amd/display: invalid parameter check in dmub_hpd_callback

The function performs a check on the "adev" input parameter, however, it
is used before the check.

Initialize the "dev" variable after the sanity check to avoid a possible
NULL pointer dereference.

Fixes: e27c41d5 ("drm/amd/display: Support for DMUB HPD interrupt handling")
Addresses-Coverity-ID: 1493909 ("Null pointer dereference")
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarJosé Expósito <jose.exposito89@gmail.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 8b5da5a4
...@@ -658,7 +658,7 @@ static void dmub_hpd_callback(struct amdgpu_device *adev, ...@@ -658,7 +658,7 @@ static void dmub_hpd_callback(struct amdgpu_device *adev,
struct drm_connector_list_iter iter; struct drm_connector_list_iter iter;
struct dc_link *link; struct dc_link *link;
uint8_t link_index = 0; uint8_t link_index = 0;
struct drm_device *dev = adev->dm.ddev; struct drm_device *dev;
if (adev == NULL) if (adev == NULL)
return; return;
...@@ -675,6 +675,7 @@ static void dmub_hpd_callback(struct amdgpu_device *adev, ...@@ -675,6 +675,7 @@ static void dmub_hpd_callback(struct amdgpu_device *adev,
link_index = notify->link_index; link_index = notify->link_index;
link = adev->dm.dc->links[link_index]; link = adev->dm.dc->links[link_index];
dev = adev->dm.ddev;
drm_connector_list_iter_begin(dev, &iter); drm_connector_list_iter_begin(dev, &iter);
drm_for_each_connector_iter(connector, &iter) { drm_for_each_connector_iter(connector, &iter) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment