From 557622308ff347bf98e42dc159337d5126029ca7 Mon Sep 17 00:00:00 2001 From: David Plowman Date: Thu, 23 Oct 2025 12:49:13 +0100 Subject: [PATCH] ipa: rpi: Fix the set function for floating statistics regions Previously it was calling the wrong internal function which would do nothing. Signed-off-by: David Plowman Reviewed-by: Stefan Klug Reviewed-by: Naushir Patuck Signed-off-by: Kieran Bingham --- src/ipa/rpi/controller/region_stats.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipa/rpi/controller/region_stats.h b/src/ipa/rpi/controller/region_stats.h index c60f7d9a..0f8c276a 100644 --- a/src/ipa/rpi/controller/region_stats.h +++ b/src/ipa/rpi/controller/region_stats.h @@ -76,7 +76,7 @@ public: { if (index >= numFloatingRegions()) return; - set(numRegions() + index, region); + set_(numRegions() + index, region); } const Region &get(unsigned int index) const