summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Brezillon <[email protected]>2019-09-14 10:22:36 +0200
committerBoris Brezillon <[email protected]>2019-09-18 10:33:51 +0200
commita06e08def9cce4854c8d524adeb75b9a2cbfa154 (patch)
tree377e53e0d41710c98a309ec9ef3d7054677f047c
parent154cb725d4a14d3d0360ee240665dd87281043cd (diff)
panfrost: Stop exposing panfrost_bo_cache_{fetch,put}()
They are not expected to be called directly, users should use panfrost_bo_{create,release}() instead. Signed-off-by: Boris Brezillon <[email protected]> Reviewed-by: Alyssa Rosenzweig <[email protected]>
-rw-r--r--src/gallium/drivers/panfrost/pan_bo.c4
-rw-r--r--src/gallium/drivers/panfrost/pan_bo.h6
2 files changed, 2 insertions, 8 deletions
diff --git a/src/gallium/drivers/panfrost/pan_bo.c b/src/gallium/drivers/panfrost/pan_bo.c
index e6a5c972ead..23273abc5f2 100644
--- a/src/gallium/drivers/panfrost/pan_bo.c
+++ b/src/gallium/drivers/panfrost/pan_bo.c
@@ -89,7 +89,7 @@ pan_bucket(struct panfrost_screen *screen, unsigned size)
* cache. If it fails, it returns NULL signaling the caller to allocate a new
* BO. */
-struct panfrost_bo *
+static struct panfrost_bo *
panfrost_bo_cache_fetch(
struct panfrost_screen *screen,
size_t size, uint32_t flags)
@@ -130,7 +130,7 @@ panfrost_bo_cache_fetch(
/* Tries to add a BO to the cache. Returns if it was
* successful */
-bool
+static bool
panfrost_bo_cache_put(
struct panfrost_screen *screen,
struct panfrost_bo *bo)
diff --git a/src/gallium/drivers/panfrost/pan_bo.h b/src/gallium/drivers/panfrost/pan_bo.h
index 6d17ebecf6e..5afaa0c873d 100644
--- a/src/gallium/drivers/panfrost/pan_bo.h
+++ b/src/gallium/drivers/panfrost/pan_bo.h
@@ -88,12 +88,6 @@ struct panfrost_bo *
panfrost_bo_import(struct panfrost_screen *screen, int fd);
int
panfrost_bo_export(struct panfrost_screen *screen, const struct panfrost_bo *bo);
-struct panfrost_bo *
-panfrost_bo_cache_fetch(struct panfrost_screen *screen,
- size_t size, uint32_t flags);
-bool
-panfrost_bo_cache_put(struct panfrost_screen *screen,
- struct panfrost_bo *bo);
void
panfrost_bo_cache_evict_all(struct panfrost_screen *screen);