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 | 3835e21369d2b322d170d997be35c1dbf87bb24f (patch) | |
tree | 0e9bb22b551ae9e09866ef3bc0f744b3ceaea569 | |
parent | c7a6e0745481ea99d6f02b8b8dc348ba85c105f4 (diff) |
etnaviv: untabify
Two driver files had tabs mixed with spaces. Remove the tabs.
Signed-off-by: Guido Günther <[email protected]>
Reviewed-by: Christian Gmeiner <[email protected]>
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_blend.c | 4 | ||||
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_context.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_blend.c b/src/gallium/drivers/etnaviv/etnaviv_blend.c index 061c9af5247..366be02f0ca 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_blend.c +++ b/src/gallium/drivers/etnaviv/etnaviv_blend.c @@ -173,7 +173,7 @@ etna_update_blend_color(struct etna_context *ctx) VIVS_PE_ALPHA_BLEND_COLOR_G(etna_cfloat_to_uint8(cs->color[1])) | VIVS_PE_ALPHA_BLEND_COLOR_B(etna_cfloat_to_uint8(cs->color[2])) | VIVS_PE_ALPHA_BLEND_COLOR_A(etna_cfloat_to_uint8(cs->color[3])); - } + } - return true; + return true; } diff --git a/src/gallium/drivers/etnaviv/etnaviv_context.c b/src/gallium/drivers/etnaviv/etnaviv_context.c index a59338490b6..b0a56c6c9b9 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_context.c +++ b/src/gallium/drivers/etnaviv/etnaviv_context.c @@ -316,8 +316,8 @@ etna_flush(struct pipe_context *pctx, struct pipe_fence_handle **fence, etna_hw_query_suspend(hq, ctx); etna_cmd_stream_flush2(ctx->stream, ctx->in_fence_fd, - (flags & PIPE_FLUSH_FENCE_FD) ? &out_fence_fd : - NULL); + (flags & PIPE_FLUSH_FENCE_FD) ? &out_fence_fd : + NULL); list_for_each_entry(struct etna_hw_query, hq, &ctx->active_hw_queries, node) etna_hw_query_resume(hq, ctx); |