diff options
author | Kristian Høgsberg <krh@redhat.com> | 2008-02-22 11:22:52 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2008-02-22 11:22:52 -0500 |
commit | b7086e6ae5632ad3c0f7c54ffd641519959d84a6 (patch) | |
tree | 5e91594f17bd38d95681493d5a264dd84950291b | |
parent | b0fee67a305cf37cf2a71d6c3753fba825400b71 (diff) |
Fix one last occurance of struct _drm_i915_batchbuffer.
Thanks to Todd Merrill for pointing it out.
-rw-r--r-- | shared-core/i915_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-core/i915_dma.c b/shared-core/i915_dma.c index 3874ed58..7da8d55c 100644 --- a/shared-core/i915_dma.c +++ b/shared-core/i915_dma.c @@ -1121,7 +1121,7 @@ static int i915_execbuffer(struct drm_device *dev, void *data, drm_i915_sarea_t *sarea_priv = (drm_i915_sarea_t *) dev_priv->sarea_priv; struct drm_i915_execbuffer *exec_buf = data; - struct _drm_i915_batchbuffer *batch = &exec_buf->batch; + struct drm_i915_batchbuffer *batch = &exec_buf->batch; struct drm_fence_arg *fence_arg = &exec_buf->fence_arg; int num_buffers; int ret; |