diff options
author | Tom St Denis <[email protected]> | 2017-10-17 09:00:33 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2017-10-21 16:53:19 -0400 |
commit | d4a6e8a90ffa281918d9ba75a08f1f917c7eb183 (patch) | |
tree | efaa05eb7799c3b7045600c9ab3266faff08fa7d | |
parent | 900b3cb1833883de9be62e48ff748663c7b6ef96 (diff) |
drm/amd/display: Fix brace style in dm_handle_hpd_rx_irq()
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.c | 3 |
1 files changed, 2 insertions, 1 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 7999eadddd75..2b57bfc8ec40 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -1010,8 +1010,9 @@ static void dm_handle_hpd_rx_irq(struct amdgpu_dm_connector *aconnector) dpcd_bytes_to_read); new_irq_handled = false; - } else + } else { break; + } } if (process_count == max_process_count) |