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

Commit 04bd27ae authored by Jesper Juhl's avatar Jesper Juhl Committed by Jiri Kosina
Browse files

radeon: remove redundant ';' from radeon_vm_bo_update_pte()



return statement needs just one semi-colon

Signed-off-by: default avatarJesper Juhl <jj@chaosbits.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 6997991a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -551,7 +551,7 @@ int radeon_vm_bo_update_pte(struct radeon_device *rdev,

	/* nothing to do if vm isn't bound */
	if (vm->id == -1)
		return 0;;
		return 0;

	bo_va = radeon_bo_va(bo, vm);
	if (bo_va == NULL) {