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 <boris.brezillon@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
Boris Brezillon 2019-09-14 10:22:36 +02:00
parent 154cb725d4
commit a06e08def9
2 changed files with 2 additions and 8 deletions

View File

@ -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)

View File

@ -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);