drm/amd/display: make dc_set_power_state() return type void again

As dc_set_power_state() no longer allocates memory, it's not necessary
to have return types and check return code as it can't fail anymore.

Change it back to `void`.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Mario Limonciello
2023-10-06 13:50:26 -05:00
committed by Alex Deucher
parent 06ad7e1642
commit 10406abe03
3 changed files with 8 additions and 17 deletions

View File

@@ -2667,11 +2667,6 @@ static void hpd_rx_irq_work_suspend(struct amdgpu_display_manager *dm)
}
}
static int dm_set_power_state(struct dc *dc, enum dc_acpi_cm_power_state power_state)
{
return dc_set_power_state(dc, power_state) ? 0 : -ENOMEM;
}
static int dm_suspend(void *handle)
{
struct amdgpu_device *adev = handle;
@@ -2707,7 +2702,9 @@ static int dm_suspend(void *handle)
hpd_rx_irq_work_suspend(dm);
return dm_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
return 0;
}
struct drm_connector *
@@ -2901,9 +2898,7 @@ static int dm_resume(void *handle)
if (r)
DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r);
r = dm_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
if (r)
return r;
dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
dc_resume(dm->dc);
@@ -2953,9 +2948,7 @@ static int dm_resume(void *handle)
}
/* power on hardware */
r = dm_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
if (r)
return r;
dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
/* program HPD filter */
dc_resume(dm->dc);