diff --git a/powerstats/akita/service.cpp b/powerstats/akita/service.cpp index 342d6ca..54f5232 100644 --- a/powerstats/akita/service.cpp +++ b/powerstats/akita/service.cpp @@ -35,11 +35,11 @@ void addDisplay(std::shared_ptr p) { // Add display residency stats std::vector states = { "Off", - "LP: 1080x2340@30", - "On: 1080x2340@60", - "On: 1080x2340@90", - "HBM: 1080x2340@60", - "HBM: 1080x2340@90"}; + "LP: 1080x2400@30", + "On: 1080x2400@60", + "On: 1080x2400@90", + "HBM: 1080x2400@60", + "HBM: 1080x2400@90"}; p->addStateResidencyDataProvider(std::make_unique( "Display", @@ -48,12 +48,12 @@ void addDisplay(std::shared_ptr p) { // Add display energy consumer p->addEnergyConsumer(PowerStatsEnergyConsumer::createMeterAndEntityConsumer( - p, EnergyConsumerType::DISPLAY, "display", {"PPVAR_VSYS_PWR_DISP"}, "Display", - {{"LP: 1080x2340@30", 1}, - {"On: 1080x2340@60", 2}, - {"On: 1080x2340@90", 3}, - {"HBM: 1080x2340@60", 4}, - {"HBM: 1080x2340@90", 5}})); + p, EnergyConsumerType::DISPLAY, "Display", {"VSYS_PWR_DISPLAY"}, "Display", + {{"LP: 1080x2400@30", 1}, + {"On: 1080x2400@60", 2}, + {"On: 1080x2400@90", 3}, + {"HBM: 1080x2400@60", 4}, + {"HBM: 1080x2400@90", 5}})); } int main() {