drm/i915/gt: Remove unneeded semicolon
authorJason Wang <wangborong@cdjrlc.com>
Sat, 16 Jul 2022 18:44:39 +0000 (02:44 +0800)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 21 Jul 2022 08:06:44 +0000 (04:06 -0400)
The semicolon after the `}' is unneeded.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[Removed line mention when pushing]
Link: https://patchwork.freedesktop.org/patch/msgid/20220716184439.72056-1-wangborong@cdjrlc.com
drivers/gpu/drm/i915/gt/intel_migrate.c

index 2c35324b5f68c995cc7ad31d5245ffd39bab2475..a69b244f14d0348b9cfd14abf9d45ac8fefafe4f 100644 (file)
@@ -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;
 }