From 7737b7c9833120d8b87f525df0f3c1d8bcaea6c0 Mon Sep 17 00:00:00 2001 From: Wei Wang Date: Fri, 30 Nov 2018 15:27:12 -0800 Subject: [PATCH] Fix a typo in comment Test: Build Change-Id: I5950312515a984d8311d63f5c1697a4b4f953bf6 --- thermal/2.0/types.hal | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/thermal/2.0/types.hal b/thermal/2.0/types.hal index 4929e44ce8..ad11849ee6 100644 --- a/thermal/2.0/types.hal +++ b/thermal/2.0/types.hal @@ -48,27 +48,33 @@ enum ThrottlingSeverity : uint32_t { * Not under throttling. */ NONE = 0, + /** * Light throttling where UX is not impacted. */ LIGHT, + /** - * Moderate throttling where UX is not largily impacted. + * Moderate throttling where UX is not largely impacted. */ MODERATE, + /** * Severe throttling where UX is largely impacted. * Similar to 1.0 throttlingThreshold. */ SEVERE, + /** * Platform has done everything to reduce power. */ CRITICAL, + /** * User should be warned before shutdown. */ WARNING, + /** * Need shutdown immediately. */