radeonsi: const-ify the si_query_ops

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Nicolai Hähnle 2018-09-20 10:21:26 +02:00
parent c85b0dea0a
commit d73a25f2c0
3 changed files with 5 additions and 5 deletions

View file

@ -915,7 +915,7 @@ static bool si_pc_query_get_result(struct si_context *sctx, struct si_query *rqu
return true;
}
static struct si_query_ops batch_query_ops = {
static const struct si_query_ops batch_query_ops = {
.destroy = si_pc_query_destroy,
.begin = si_pc_query_begin,
.end = si_pc_query_end,

View file

@ -34,7 +34,7 @@
#define SI_MAX_STREAMS 4
static struct si_query_ops query_hw_ops;
static const struct si_query_ops query_hw_ops;
struct si_hw_query_params {
unsigned start_offset;
@ -499,7 +499,7 @@ static bool si_query_sw_get_result(struct si_context *sctx,
}
static struct si_query_ops sw_query_ops = {
static const struct si_query_ops sw_query_ops = {
.destroy = si_query_sw_destroy,
.begin = si_query_sw_begin,
.end = si_query_sw_end,
@ -1343,7 +1343,7 @@ void si_query_hw_resume(struct si_context *sctx, struct si_query *query)
si_query_hw_emit_start(sctx, (struct si_query_hw *)query);
}
static struct si_query_ops query_hw_ops = {
static const struct si_query_ops query_hw_ops = {
.destroy = si_query_hw_destroy,
.begin = si_query_hw_begin,
.end = si_query_hw_end,

View file

@ -141,7 +141,7 @@ struct si_query_ops {
struct si_query {
struct threaded_query b;
struct si_query_ops *ops;
const struct si_query_ops *ops;
/* The PIPE_QUERY_xxx type of query */
unsigned type;