Commit 54583bf4 authored by Dave Airlie's avatar Dave Airlie Committed by Dave Airlie

i915: fix vbl swap allocation size.

Oops...
Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent c153f45f
...@@ -540,7 +540,7 @@ int i915_vblank_swap(struct drm_device *dev, void *data, ...@@ -540,7 +540,7 @@ int i915_vblank_swap(struct drm_device *dev, void *data,
return -EBUSY; return -EBUSY;
} }
vbl_swap = drm_calloc(1, sizeof(vbl_swap), DRM_MEM_DRIVER); vbl_swap = drm_calloc(1, sizeof(*vbl_swap), DRM_MEM_DRIVER);
if (!vbl_swap) { if (!vbl_swap) {
DRM_ERROR("Failed to allocate memory to queue swap\n"); DRM_ERROR("Failed to allocate memory to queue swap\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment