Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f465a89 authored by Jesse Barnes's avatar Jesse Barnes
Browse files

drm/i915: fix typo in compressed buffer setup



We want the compressed line length buffer address, not the framebuffer
address.

Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent 7e616158
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;