diff options
author | Guido Günther <[email protected]> | 2019-05-31 14:35:06 +0200 |
---|---|---|
committer | Guido Günther <[email protected]> | 2019-06-05 08:58:05 +0000 |
commit | 6ab83b84749d91a886653ab6bcb51ad2d5040c07 (patch) | |
tree | 036aaa00253fb2f1debf04f9729395c59df1fe6a /src/etnaviv/drm/etnaviv_priv.h | |
parent | 66eb554d461484be3eeef21a7cee89dc85809573 (diff) |
etnaviv: drm: Drop drm_{public,private}
Signed-off-by: Guido Günther <[email protected]>
Reviewed-by: Christian Gmeiner <[email protected]>
Diffstat (limited to 'src/etnaviv/drm/etnaviv_priv.h')
-rw-r--r-- | src/etnaviv/drm/etnaviv_priv.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/etnaviv/drm/etnaviv_priv.h b/src/etnaviv/drm/etnaviv_priv.h index 8ae731fcc70..aabace03f2b 100644 --- a/src/etnaviv/drm/etnaviv_priv.h +++ b/src/etnaviv/drm/etnaviv_priv.h @@ -74,14 +74,14 @@ struct etna_device { int closefd; /* call close(fd) upon destruction */ }; -drm_private void etna_bo_cache_init(struct etna_bo_cache *cache); -drm_private void etna_bo_cache_cleanup(struct etna_bo_cache *cache, time_t time); -drm_private struct etna_bo *etna_bo_cache_alloc(struct etna_bo_cache *cache, +void etna_bo_cache_init(struct etna_bo_cache *cache); +void etna_bo_cache_cleanup(struct etna_bo_cache *cache, time_t time); +struct etna_bo *etna_bo_cache_alloc(struct etna_bo_cache *cache, uint32_t *size, uint32_t flags); -drm_private int etna_bo_cache_free(struct etna_bo_cache *cache, struct etna_bo *bo); +int etna_bo_cache_free(struct etna_bo_cache *cache, struct etna_bo *bo); /* for where @table_lock is already held: */ -drm_private void etna_device_del_locked(struct etna_device *dev); +void etna_device_del_locked(struct etna_device *dev); /* a GEM buffer object allocated from the DRM device */ struct etna_bo { |