drm/nouveau/mmu: Fix trailing semicolon
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> Reviewed-by: Karol Herbst <kherbst@redhat.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
3ea74559d8
commit
e64fe9db2d
|
@ -642,7 +642,7 @@ nvkm_vmm_ptes_sparse(struct nvkm_vmm *vmm, u64 addr, u64 size, bool ref)
|
||||||
else
|
else
|
||||||
block = (size >> page[i].shift) << page[i].shift;
|
block = (size >> page[i].shift) << page[i].shift;
|
||||||
} else {
|
} else {
|
||||||
block = (size >> page[i].shift) << page[i].shift;;
|
block = (size >> page[i].shift) << page[i].shift;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Perform operation. */
|
/* Perform operation. */
|
||||||
|
|
Loading…
Reference in New Issue