mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 02:56:49 +07:00
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: Lucas Stach <dev@lynxeye.de>
This commit is contained in:
parent
6cbf04001e
commit
f91ac470a8
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user