Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c7e867c authored by Dave Jones's avatar Dave Jones Committed by Alex Deucher
Browse files

drm/radeon/dpm: fix uninitialized read from stack in kv_dpm_late_enable



If we take the false branch of the if quoted in the diff below, we
end up doing a return ret, without ever having initialized it.

Picked up by coverity.

Signed-off-by: default avatarDave Jones <davej@fedoraproject.org>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 4dbffb8f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1223,7 +1223,7 @@ int kv_dpm_enable(struct radeon_device *rdev)

int kv_dpm_late_enable(struct radeon_device *rdev)
{
	int ret;
	int ret = 0;

	if (rdev->irq.installed &&
	    r600_is_internal_thermal_sensor(rdev->pm.int_thermal_type)) {