aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Koo <[email protected]>2018-04-27 15:23:23 -0400
committerAlex Deucher <[email protected]>2018-05-18 16:08:28 -0500
commitdab911d535ae24a39b4e383c0dffaa3e5583883d (patch)
treef84eac3cf4416c5cd41fbdd96f24f8715036ca05
parent6474b2824d71ac6cd1005aff8841dd8bcfa0901d (diff)
drm/amd/display: fix bug with index check
Signed-off-by: Anthony Koo <[email protected]> Reviewed-by: Tony Cheng <[email protected]> Acked-by: Harry Wentland <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/display/modules/stats/stats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/modules/stats/stats.c b/drivers/gpu/drm/amd/display/modules/stats/stats.c
index 4b00bae725b9..fe9e4b316d3a 100644
--- a/drivers/gpu/drm/amd/display/modules/stats/stats.c
+++ b/drivers/gpu/drm/amd/display/modules/stats/stats.c
@@ -305,7 +305,7 @@ void mod_stats_update_event(struct mod_stats *mod_stats,
core_stats = MOD_STATS_TO_CORE(mod_stats);
- if (core_stats->index >= core_stats->entries)
+ if (core_stats->event_index >= core_stats->event_entries)
return;
events = core_stats->events;