mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-08 17:29:02 +02:00
DRM_DEBUG
This commit is contained in:
parent
555a03c150
commit
12d0ced27c
2 changed files with 6 additions and 6 deletions
|
|
@ -135,9 +135,9 @@ static void print_heap( struct mem_block *heap )
|
|||
struct mem_block *p;
|
||||
|
||||
for (p = heap->next ; p != heap ; p = p->next)
|
||||
printk("0x%x..0x%x (0x%x) -- owner %d\n",
|
||||
p->start, p->start + p->size,
|
||||
p->size, p->pid);
|
||||
DRM_DEBUG("0x%x..0x%x (0x%x) -- owner %d\n",
|
||||
p->start, p->start + p->size,
|
||||
p->size, p->pid);
|
||||
}
|
||||
|
||||
/* Initialize. How to check for an uninitialized heap?
|
||||
|
|
|
|||
|
|
@ -135,9 +135,9 @@ static void print_heap( struct mem_block *heap )
|
|||
struct mem_block *p;
|
||||
|
||||
for (p = heap->next ; p != heap ; p = p->next)
|
||||
printk("0x%x..0x%x (0x%x) -- owner %d\n",
|
||||
p->start, p->start + p->size,
|
||||
p->size, p->pid);
|
||||
DRM_DEBUG("0x%x..0x%x (0x%x) -- owner %d\n",
|
||||
p->start, p->start + p->size,
|
||||
p->size, p->pid);
|
||||
}
|
||||
|
||||
/* Initialize. How to check for an uninitialized heap?
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue