drm/nouveau/mmu: Fix trailing semicolon
authorLuis de Bethencourt <[email protected]>
Wed, 17 Jan 2018 18:53:14 +0000 (18:53 +0000)
committerBen Skeggs <[email protected]>
Fri, 2 Feb 2018 05:24:10 +0000 (15:24 +1000)
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]>
Reviewed-by: Karol Herbst <[email protected]>
Signed-off-by: Ben Skeggs <[email protected]>
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmm.c

index e35d3e17cd7ca39555bff44948678961533b06af..93946dcee3191be1418ecf332ef7135854849a09 100644 (file)
@@ -642,7 +642,7 @@ nvkm_vmm_ptes_sparse(struct nvkm_vmm *vmm, u64 addr, u64 size, bool ref)
                        else
                                block = (size >> page[i].shift) << page[i].shift;
                } else {
-                       block = (size >> page[i].shift) << page[i].shift;;
+                       block = (size >> page[i].shift) << page[i].shift;
                }
 
                /* Perform operation. */