Skip to content

Commit

Permalink
radeon: remove redundant ';' from radeon_vm_bo_update_pte()
Browse files Browse the repository at this point in the history
return statement needs just one semi-colon

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Jesper Juhl authored and Jiri Kosina committed Apr 6, 2012
1 parent 6997991 commit 04bd27a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/radeon/radeon_gart.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 04bd27a

Please sign in to comment.