drm: Branch 'master'
[email protected] (GitLab Mirror) Mon, 24 Jun 2019 14:21:56 +0000 (UTC)
| Newsgroups | gmane.comp.video.dri.patches |
|---|---|
| Message-ID | <[email protected]> |
etnaviv/etnaviv-symbol-check | 1 - etnaviv/etnaviv_drmif.h | 2 -- 2 files changed, 3 deletions(-) New commits: commit 8849aa87fb3879b7d3fd4c9e4435bc0eb1499fa9 Author: Lucas Stach <[email protected]> Date: Wed May 29 12:05:54 2019 +0200 etnaviv: drop etna_bo_from_handle symbol There is no implementation and also no users, so there is no point in keeping it in the API. Signed-off-by: Lucas Stach <[email protected]> Reviewed-by: Philipp Zabel <[email protected]> diff --git a/etnaviv/etnaviv-symbol-check b/etnaviv/etnaviv-symbol-check index 18910688..6f6a7a28 100755 --- a/etnaviv/etnaviv-symbol-check +++ b/etnaviv/etnaviv-symbol-check @@ -25,7 +25,6 @@ etna_pipe_del etna_pipe_wait etna_pipe_wait_ns etna_bo_new -etna_bo_from_handle etna_bo_from_name etna_bo_from_dmabuf etna_bo_ref diff --git a/etnaviv/etnaviv_drmif.h b/etnaviv/etnaviv_drmif.h index 5a6bef8d..80aedc1c 100644 --- a/etnaviv/etnaviv_drmif.h +++ b/etnaviv/etnaviv_drmif.h @@ -115,8 +115,6 @@ int etna_pipe_wait_ns(struct etna_pipe *pipe, uint32_t timestamp, uint64_t ns); struct etna_bo *etna_bo_new(struct etna_device *dev, uint32_t size, uint32_t flags); -struct etna_bo *etna_bo_from_handle(struct etna_device *dev, - uint32_t handle, uint32_t size); struct etna_bo *etna_bo_from_name(struct etna_device *dev, uint32_t name); struct etna_bo *etna_bo_from_dmabuf(struct etna_device *dev, int fd); struct etna_bo *etna_bo_ref(struct etna_bo *bo); --