Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 293812
b: refs/heads/master
c: f104876
h: refs/heads/master
v: v3
  • Loading branch information
Julia Lawall authored and Dave Airlie committed Mar 20, 2012
1 parent 8b4296f commit 143f9ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f48bb04a56fd1f582a45f3882255477417bc0ed7
refs/heads/master: f10487658a0e5fd793ee5ba7ad645c060e4afbcd
5 changes: 3 additions & 2 deletions trunk/drivers/gpu/drm/savage/savage_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,8 @@ int savage_bci_cmdbuf(struct drm_device *dev, void *data, struct drm_file *file_
DRM_ERROR("indexed drawing command extends "
"beyond end of command buffer\n");
DMA_FLUSH();
return -EINVAL;
ret = -EINVAL;
goto done;
}
/* fall through */
case SAVAGE_CMD_DMA_PRIM:
Expand All @@ -1076,7 +1077,7 @@ int savage_bci_cmdbuf(struct drm_device *dev, void *data, struct drm_file *file_
cmdbuf->vb_stride,
cmdbuf->nbox, cmdbuf->box_addr);
if (ret != 0)
return ret;
goto done;
first_draw_cmd = NULL;
}
}
Expand Down

0 comments on commit 143f9ff

Please sign in to comment.