diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-09-17 17:22:44 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-09-17 17:22:44 -0400 |
commit | 6f465a8925016633891f5bf030f9c37036529b39 (patch) | |
tree | 7c5e6075366efd8b79ffaac5de217c8b4323e061 | |
parent | 7e61615857c6fb3afbcb43f5c4e97511a923f5a8 (diff) |
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>
-rw-r--r-- | drivers/gpu/drm/i915/i915_dma.c | 2 |
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) | |||
1125 | return; | 1125 | return; |
1126 | } | 1126 | } |
1127 | 1127 | ||
1128 | compressed_llb = drm_mm_get_block(compressed_fb, 4096, 4096); | 1128 | compressed_llb = drm_mm_get_block(compressed_llb, 4096, 4096); |
1129 | if (!compressed_llb) { | 1129 | if (!compressed_llb) { |
1130 | i915_warn_stolen(dev); | 1130 | i915_warn_stolen(dev); |
1131 | return; | 1131 | return; |