Commit dec91f5b authored by Maximilian Attems's avatar Maximilian Attems Committed by Linus Torvalds

[PATCH] janitor: list_for_each: drivers-char-drm-radeon_mem.c

s/for/list_for_each/
Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Signed-off-by: default avatarMaximilian Attems <janitor@sternwelten.at>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5d6f4381
...@@ -85,7 +85,7 @@ static struct mem_block *alloc_block( struct mem_block *heap, int size, ...@@ -85,7 +85,7 @@ static struct mem_block *alloc_block( struct mem_block *heap, int size,
struct mem_block *p; struct mem_block *p;
int mask = (1 << align2)-1; int mask = (1 << align2)-1;
for (p = heap->next ; p != heap ; p = p->next) { list_for_each(p, heap) {
int start = (p->start + mask) & ~mask; int start = (p->start + mask) & ~mask;
if (p->filp == 0 && start + size <= p->start + p->size) if (p->filp == 0 && start + size <= p->start + p->size)
return split_block( p, start, size, filp ); return split_block( p, start, size, filp );
...@@ -98,7 +98,7 @@ static struct mem_block *find_block( struct mem_block *heap, int start ) ...@@ -98,7 +98,7 @@ static struct mem_block *find_block( struct mem_block *heap, int start )
{ {
struct mem_block *p; struct mem_block *p;
for (p = heap->next ; p != heap ; p = p->next) list_for_each(p, heap)
if (p->start == start) if (p->start == start)
return p; return p;
...@@ -166,7 +166,7 @@ void radeon_mem_release( DRMFILE filp, struct mem_block *heap ) ...@@ -166,7 +166,7 @@ void radeon_mem_release( DRMFILE filp, struct mem_block *heap )
if (!heap || !heap->next) if (!heap || !heap->next)
return; return;
for (p = heap->next ; p != heap ; p = p->next) { list_for_each(p, heap) {
if (p->filp == filp) if (p->filp == filp)
p->filp = NULL; p->filp = NULL;
} }
...@@ -174,7 +174,7 @@ void radeon_mem_release( DRMFILE filp, struct mem_block *heap ) ...@@ -174,7 +174,7 @@ void radeon_mem_release( DRMFILE filp, struct mem_block *heap )
/* Assumes a single contiguous range. Needs a special filp in /* Assumes a single contiguous range. Needs a special filp in
* 'heap' to stop it being subsumed. * 'heap' to stop it being subsumed.
*/ */
for (p = heap->next ; p != heap ; p = p->next) { list_for_each(p, heap) {
while (p->filp == 0 && p->next->filp == 0) { while (p->filp == 0 && p->next->filp == 0) {
struct mem_block *q = p->next; struct mem_block *q = p->next;
p->size += q->size; p->size += q->size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment