Skip to content

Commit

Permalink
drm/i915/gt: Remove unneeded semicolon
Browse files Browse the repository at this point in the history
The semicolon after the `}' is unneeded.

Signed-off-by: Jason Wang <[email protected]>
Reviewed-by: Rodrigo Vivi <[email protected]>
Signed-off-by: Rodrigo Vivi <[email protected]>
[Removed line mention when pushing]
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
Jason Wang authored and rodrigovivi committed Jul 21, 2022
1 parent a4a4307 commit 2be1959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/gt/intel_migrate.c
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ static int scatter_list_length(struct scatterlist *sg)
while (sg && sg_dma_len(sg)) {
len += sg_dma_len(sg);
sg = sg_next(sg);
};
}

return len;
}
Expand Down

0 comments on commit 2be1959

Please sign in to comment.