1
0
Fork 0

drm/amd/dc: fix semicolon.cocci warnings

Remove unneeded semicolons.

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

Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
hifive-unleashed-5.1
Julia Lawall 2017-02-14 07:13:04 +01:00 committed by Alex Deucher
parent 26ada804d6
commit 5866e7cf7d
1 changed files with 5 additions and 5 deletions

View File

@ -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(