Commit e2751493 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Alex Deucher
Browse files

drm: Fix trailing semicolon



The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 122fe39d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -461,7 +461,7 @@ void drm_sched_hw_job_reset(struct drm_gpu_scheduler *sched, struct drm_sched_jo
{
	struct drm_sched_job *s_job;
	struct drm_sched_entity *entity, *tmp;
	int i;;
	int i;

	spin_lock(&sched->job_list_lock);
	list_for_each_entry_reverse(s_job, &sched->ring_mirror_list, node) {