diff options
author | sashwinbalaji <sashwinbalaji@google.com> | 2023-05-17 23:08:23 +0800 |
---|---|---|
committer | S Ashwin Balaji <sashwinbalaji@google.com> | 2023-05-18 02:07:25 +0000 |
commit | fb8ffc40feb548d4201825da21d10038cf80e2e6 (patch) | |
tree | bcb3b2bfd6efc7e4d172191e69a096518dc7daa6 | |
parent | d9a097187b477083c11d8e3f3c633b2a0b10118a (diff) |
thermal: stats: Reduce atom field suffix size
To avoid unnecesary data use reduce the suffix keyword
Bug: 259903201
Test: Local build and verify atoms log
Change-Id: Ic50978b40d96ae97cd3b842aa6a9db7ed46dfa06
-rw-r--r-- | thermal/utils/thermal_stats_helper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thermal/utils/thermal_stats_helper.cpp b/thermal/utils/thermal_stats_helper.cpp index f33dc70..d9a2a65 100644 --- a/thermal/utils/thermal_stats_helper.cpp +++ b/thermal/utils/thermal_stats_helper.cpp @@ -30,7 +30,7 @@ namespace hardware { namespace thermal { namespace implementation { -constexpr std::string_view kCustomThresholdSetSuffix("-THRESHOLD-LIST-"); +constexpr std::string_view kCustomThresholdSetSuffix("-TH-"); constexpr std::string_view kCompressedThresholdSuffix("-CMBN-TH"); using aidl::android::frameworks::stats::VendorAtom; |