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

Commit 610bd7da authored by Dave Airlie's avatar Dave Airlie
Browse files

drm/nouveau: fix booting with plymouth + dumb support



We noticed a plymouth bug on Fedora 18, and I then
noticed this stupid thinko, fixing it fixed the problem
with plymouth.

Cc: stable@vger.kernel.org
Acked-by: default avatarBen Skeggs <bskeggs@redhat.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 363fca82
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -598,7 +598,7 @@ nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
	args->size = args->pitch * args->height;
	args->size = args->pitch * args->height;
	args->size = roundup(args->size, PAGE_SIZE);
	args->size = roundup(args->size, PAGE_SIZE);


	ret = nouveau_gem_new(dev, args->size, 0, TTM_PL_FLAG_VRAM, 0, 0, &bo);
	ret = nouveau_gem_new(dev, args->size, 0, NOUVEAU_GEM_DOMAIN_VRAM, 0, 0, &bo);
	if (ret)
	if (ret)
		return ret;
		return ret;