aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom St Denis <[email protected]>2017-10-17 08:49:13 -0400
committerAlex Deucher <[email protected]>2017-10-21 16:53:13 -0400
commit1fb0c9ccb311cdf16f6ec617fb30c249888c5f97 (patch)
treef766d5229cd817895399db65fa7ba839ed6b0ed9
parent32f5062d1c7dc2a4d974bb10cf67a98043d9c901 (diff)
drm/amd/display: Fix indentation in dm_resume()
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 893213b9c11e..a7bbd22e8f12 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -628,10 +628,7 @@ static int dm_resume(void *handle)
struct amdgpu_display_manager *dm = &adev->dm;
/* power on hardware */
- dc_set_power_state(
- dm->dc,
- DC_ACPI_CM_POWER_STATE_D0
- );
+ dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0);
return 0;
}