diff options
author | Christian Gmeiner <[email protected]> | 2018-07-30 09:44:01 +0200 |
---|---|---|
committer | Christian GMEINER <[email protected]> | 2018-07-31 08:33:32 +0200 |
commit | e1d4882d05dab49395be459f34b1559292d5b6f6 (patch) | |
tree | 7d43fc563d1f4e737813e640f1673ebeec98923b | |
parent | 553af7a1900a0feb6d3b5bcfbf8ccf11816ebf84 (diff) |
etnaviv: fix typo in query names
Fixes: d0bed0b4944d ("etnaviv: support HI performance counters")
Cc: [email protected]
Signed-off-by: Christian Gmeiner <[email protected]>
Reviewed-by: Chris Healy <[email protected]>
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_query_pm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_query_pm.c b/src/gallium/drivers/etnaviv/etnaviv_query_pm.c index 981cfd2c4d1..ade0b9790c2 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_query_pm.c +++ b/src/gallium/drivers/etnaviv/etnaviv_query_pm.c @@ -59,7 +59,7 @@ static const char *group_names[] = { static const struct etna_perfmon_config query_config[] = { { - .name = "hi-total-cyles", + .name = "hi-total-cycles", .type = ETNA_QUERY_HI_TOTAL_CYCLES, .group_id = ETNA_QUERY_HI_GROUP_ID, .source = (const struct etna_perfmon_source[]) { @@ -67,7 +67,7 @@ static const struct etna_perfmon_config query_config[] = { } }, { - .name = "hi-idle-cyles", + .name = "hi-idle-cycles", .type = ETNA_QUERY_HI_IDLE_CYCLES, .group_id = ETNA_QUERY_HI_GROUP_ID, .source = (const struct etna_perfmon_source[]) { |