Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e64fe9db authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Ben Skeggs
Browse files

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: default avatarLuis de Bethencourt <luisbg@kernel.org>
Reviewed-by: default avatarKarol Herbst <kherbst@redhat.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 3ea74559
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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. */