summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2009-09-17 23:22:44 +0200
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-09-17 23:22:44 +0200
commit6f465a8925016633891f5bf030f9c37036529b39 (patch)
tree7c5e6075366efd8b79ffaac5de217c8b4323e061 /drivers/gpu
parentdrm/i915: Only destroy a constructed mmap offset (diff)
downloadlinux-6f465a8925016633891f5bf030f9c37036529b39.tar.xz
linux-6f465a8925016633891f5bf030f9c37036529b39.zip
drm/i915: fix typo in compressed buffer setup
We want the compressed line length buffer address, not the framebuffer address. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/i915_dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index 5a6b731c5529..7a73b2941eb7 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -1125,7 +1125,7 @@ static void i915_setup_compression(struct drm_device *dev, int size)
return;
}
- compressed_llb = drm_mm_get_block(compressed_fb, 4096, 4096);
+ compressed_llb = drm_mm_get_block(compressed_llb, 4096, 4096);
if (!compressed_llb) {
i915_warn_stolen(dev);
return;