Merge "power/stats: Add more energy consumer types" am: a5ec53d68f

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1584748

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ie661b6a70d04d2f60b196e219868692228537760
This commit is contained in:
Treehugger Robot
2021-02-17 22:24:11 +00:00
committed by Automerger Merge Worker
2 changed files with 11 additions and 3 deletions

View File

@@ -34,6 +34,10 @@ package android.hardware.power.stats;
@VintfStability
enum EnergyConsumerType {
OTHER = 0,
CPU_CLUSTER = 1,
DISPLAY = 2,
BLUETOOTH = 1,
CPU_CLUSTER = 2,
DISPLAY = 3,
GNSS = 4,
MOBILE_RADIO = 5,
WIFI = 6,
}

View File

@@ -20,6 +20,10 @@ package android.hardware.power.stats;
@VintfStability
enum EnergyConsumerType {
OTHER,
BLUETOOTH,
CPU_CLUSTER,
DISPLAY,
}
GNSS,
MOBILE_RADIO,
WIFI,
}