aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Slusarz <marcin.slusarz@gmail.com>2010-01-12 15:31:28 +0100
committerFrancisco Jerez <currojerez@riseup.net>2010-01-31 16:09:03 +0100
commit55ba98fadfb8909d23d6f810285504abd173f0ad (patch)
tree4a1b67927c5060f67cb05349508b1d2dddcf11a6
parent44a0e0a099eeeb6501359f08449dcaa5e9899398 (diff)
nouveau: add nouveau_resource_destroy
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
-rw-r--r--nouveau/nouveau_resource.c9
-rw-r--r--nouveau/nouveau_resource.h3
2 files changed, 12 insertions, 0 deletions
diff --git a/nouveau/nouveau_resource.c b/nouveau/nouveau_resource.c
index 6bef7567..7acaf7db 100644
--- a/nouveau/nouveau_resource.c
+++ b/nouveau/nouveau_resource.c
@@ -41,6 +41,15 @@ nouveau_resource_init(struct nouveau_resource **heap,
return 0;
}
+void
+nouveau_resource_destroy(struct nouveau_resource **heap)
+{
+ if (!*heap)
+ return;
+ free(*heap);
+ *heap = NULL;
+}
+
int
nouveau_resource_alloc(struct nouveau_resource *heap, unsigned size, void *priv,
struct nouveau_resource **res)
diff --git a/nouveau/nouveau_resource.h b/nouveau/nouveau_resource.h
index 988d2466..b760dfbb 100644
--- a/nouveau/nouveau_resource.h
+++ b/nouveau/nouveau_resource.h
@@ -38,6 +38,9 @@ int
nouveau_resource_init(struct nouveau_resource **heap, unsigned start,
unsigned size);
+void
+nouveau_resource_destroy(struct nouveau_resource **heap);
+
int
nouveau_resource_alloc(struct nouveau_resource *heap, unsigned size, void *priv,
struct nouveau_resource **);