aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom St Denis <[email protected]>2017-10-17 08:48:44 -0400
committerAlex Deucher <[email protected]>2017-10-21 16:53:10 -0400
commit32f5062d1c7dc2a4d974bb10cf67a98043d9c901 (patch)
tree21a52a90024375d99eda52a9385552392e8cd652
parent33be2785477e470087ea1c5b203881d644cdb0f3 (diff)
drm/amd/display: Fix indentation in dm_suspend()
Signed-off-by: Tom St Denis <[email protected]> Acked-by: Andrey Grodzovsky <[email protected]> Reviewed-by: Harry Wentland <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index d8fcf24a041e..893213b9c11e 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -598,10 +598,7 @@ static int dm_suspend(void *handle)
WARN_ON(adev->dm.cached_state);
adev->dm.cached_state = drm_atomic_helper_suspend(adev->ddev);
- dc_set_power_state(
- dm->dc,
- DC_ACPI_CM_POWER_STATE_D3
- );
+ dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D3);
return ret;
}