etnaviv: drop etna_pipe_wait(..)
It is unused -> drop it. Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-by: Lucas Stach <l.stach@pengutronix.de> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7371>
This commit is contained in:
committed by
Marge Bot
parent
b7501184b9
commit
8b0218beb5
@@ -109,7 +109,6 @@ int etna_gpu_get_param(struct etna_gpu *gpu, enum etna_param_id param,
|
||||
|
||||
struct etna_pipe *etna_pipe_new(struct etna_gpu *gpu, enum etna_pipe_id id);
|
||||
void etna_pipe_del(struct etna_pipe *pipe);
|
||||
int etna_pipe_wait(struct etna_pipe *pipe, uint32_t timestamp, uint32_t ms);
|
||||
int etna_pipe_wait_ns(struct etna_pipe *pipe, uint32_t timestamp, uint64_t ns);
|
||||
|
||||
|
||||
|
||||
@@ -26,11 +26,6 @@
|
||||
|
||||
#include "etnaviv_priv.h"
|
||||
|
||||
int etna_pipe_wait(struct etna_pipe *pipe, uint32_t timestamp, uint32_t ms)
|
||||
{
|
||||
return etna_pipe_wait_ns(pipe, timestamp, ms * 1000000);
|
||||
}
|
||||
|
||||
int etna_pipe_wait_ns(struct etna_pipe *pipe, uint32_t timestamp, uint64_t ns)
|
||||
{
|
||||
struct etna_device *dev = pipe->gpu->dev;
|
||||
|
||||
Reference in New Issue
Block a user