Skip to content

Commit

Permalink
drm: Fix trailing semicolon
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
  • Loading branch information
luisbg authored and alexdeucher committed Feb 19, 2018
1 parent 122fe39 commit e275149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/scheduler/gpu_scheduler.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e275149

Please sign in to comment.