Skip to content

Commit

Permalink
drm/amd/dc: fix semicolon.cocci warnings
Browse files Browse the repository at this point in the history
Remove unneeded semicolons.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Signed-off-by: Julia Lawall <[email protected]>
Signed-off-by: Fengguang Wu <[email protected]>
Reviewed-by: Harry Wentland <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
  • Loading branch information
JuliaLawall authored and alexdeucher committed Sep 26, 2017
1 parent 26ada80 commit 5866e7c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c
Original file line number Diff line number Diff line change
Expand Up @@ -938,11 +938,11 @@ static void copy_crtc_timing_for_drm_display_mode(
dst_mode->crtc_hsync_end = src_mode->crtc_hsync_end;
dst_mode->crtc_htotal = src_mode->crtc_htotal;
dst_mode->crtc_hskew = src_mode->crtc_hskew;
dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start;;
dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end;;
dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start;;
dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end;;
dst_mode->crtc_vtotal = src_mode->crtc_vtotal;;
dst_mode->crtc_vblank_start = src_mode->crtc_vblank_start;
dst_mode->crtc_vblank_end = src_mode->crtc_vblank_end;
dst_mode->crtc_vsync_start = src_mode->crtc_vsync_start;
dst_mode->crtc_vsync_end = src_mode->crtc_vsync_end;
dst_mode->crtc_vtotal = src_mode->crtc_vtotal;
}

static void decide_crtc_timing_for_drm_display_mode(
Expand Down

0 comments on commit 5866e7c

Please sign in to comment.