]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm: Fix trailing semicolon
authorLuis de Bethencourt <luisbg@kernel.org>
Wed, 17 Jan 2018 18:22:41 +0000 (18:22 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 19 Feb 2018 19:19:04 +0000 (14:19 -0500)
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/scheduler/gpu_scheduler.c

index 2c18996d59c58e6247a24936da9dc155f76d78cf..0d95888ccc3e778bb9752376682c5cccba525e7b 100644 (file)
@@ -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) {