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

Commit f91ac470 authored by Lucas Stach's avatar Lucas Stach Committed by Lucas Stach
Browse files

drm/etnaviv: reduce allocation failure message severity



The GPU userspace is expected to deal with failure to allocate memory for
the GPU buffers, there is no need to spam the log on failure.

Signed-off-by: default avatarLucas Stach <dev@lynxeye.de>
parent 6cbf0400
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ static int etnaviv_gem_shmem_get_pages(struct etnaviv_gem_object *etnaviv_obj)
	struct page **p = drm_gem_get_pages(&etnaviv_obj->base);

	if (IS_ERR(p)) {
		dev_err(dev->dev, "could not get pages: %ld\n", PTR_ERR(p));
		dev_dbg(dev->dev, "could not get pages: %ld\n", PTR_ERR(p));
		return PTR_ERR(p);
	}