Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228724
b: refs/heads/master
c: 3685092
h: refs/heads/master
v: v3
  • Loading branch information
Chris Wilson committed Nov 23, 2010
1 parent 78d3a13 commit ce57a1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: 5f75377db4d8d81ca4465b54d3c339c70c6a0fa2
refs/heads/master: 3685092b717882bb9b6801bf3e4b02a106e3b129
6 changes: 3 additions & 3 deletions trunk/drivers/gpu/drm/i915/i915_debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,9 +572,9 @@ static int i915_ringbuffer_info(struct seq_file *m, void *data)
static const char *ring_str(int ring)
{
switch (ring) {
case RING_RENDER: return "render";
case RING_BSD: return "bsd";
case RING_BLT: return "blt";
case RING_RENDER: return " render";
case RING_BSD: return " bsd";
case RING_BLT: return " blt";
default: return "";
}
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/gpu/drm/i915/i915_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ static u32 capture_bo_list(struct drm_i915_error_buffer *err,
err->tiling = obj->tiling_mode;
err->dirty = obj->dirty;
err->purgeable = obj->madv != I915_MADV_WILLNEED;
err->ring = obj->ring->id;
err->ring = obj->ring ? obj->ring->id : 0;

if (++i == count)
break;
Expand Down

0 comments on commit ce57a1d

Please sign in to comment.