diff options
author | Ben Skeggs <[email protected]> | 2011-03-01 10:31:54 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2011-03-01 14:44:42 +1000 |
commit | d6bdf1f6ae6f8d06db740ad75e9151ef275755b2 (patch) | |
tree | 034c18715f1b89e4f6fffd9b22659ba98609f4e6 /src/gallium/drivers/nouveau/nouveau_mm.c | |
parent | 2f30a5bdaad480118e23ac4243de3b4a11ba62a8 (diff) |
nouveau: fix compiler complaint
Signed-off-by: Ben Skeggs <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nouveau_mm.c')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_mm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_mm.c b/src/gallium/drivers/nouveau/nouveau_mm.c index 1c4bb61af88..332b8dc02e3 100644 --- a/src/gallium/drivers/nouveau/nouveau_mm.c +++ b/src/gallium/drivers/nouveau/nouveau_mm.c @@ -222,6 +222,12 @@ nouveau_mm_free(struct nouveau_mm_allocation *alloc) FREE(alloc); } +void +nouveau_mm_free_work(void *data) +{ + nouveau_mm_free(data); +} + struct nouveau_mman * nouveau_mm_create(struct nouveau_device *dev, uint32_t domain, uint32_t storage_type) |