mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-05 11:18:11 +02:00
nouveau: Turn some messages into DRM_DEBUGs..
This commit is contained in:
parent
c3faa589b0
commit
a615d2fde7
1 changed files with 2 additions and 2 deletions
|
|
@ -531,13 +531,13 @@ alloc_ok:
|
|||
block->map_handle = entry->user_token;
|
||||
}
|
||||
|
||||
DRM_INFO("allocated 0x%llx\n", block->start);
|
||||
DRM_DEBUG("allocated 0x%llx type=0x%08x\n", block->start, block->flags);
|
||||
return block;
|
||||
}
|
||||
|
||||
void nouveau_mem_free(struct drm_device* dev, struct mem_block* block)
|
||||
{
|
||||
DRM_INFO("freeing 0x%llx\n", block->start);
|
||||
DRM_DEBUG("freeing 0x%llx type=0x%08x\n", block->start, block->flags);
|
||||
if (block->flags&NOUVEAU_MEM_MAPPED)
|
||||
drm_rmmap(dev, block->map);
|
||||
nouveau_mem_free_block(block);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue