nouveau/mm: remove unused nouveau_mm_allocation.next field

Signed-off-by: Karol Herbst <kherbst@redhat.com>
Reviewed-by: Pierre Moreau <dev@pmoreau.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8765>
This commit is contained in:
Karol Herbst 2021-04-28 14:39:06 +02:00 committed by Marge Bot
parent de0a0d2f02
commit e9c6569227
2 changed files with 0 additions and 2 deletions

View file

@ -207,7 +207,6 @@ nouveau_mm_allocate(struct nouveau_mman *cache,
list_add(&slab->head, &bucket->full);
}
alloc->next = NULL;
alloc->offset = *offset;
alloc->priv = (void *)slab;

View file

@ -8,7 +8,6 @@ struct nouveau_mman;
* them. This struct is linked with fences for delayed freeing of allocs.
*/
struct nouveau_mm_allocation {
struct nouveau_mm_allocation *next;
void *priv;
uint32_t offset;
};