drivers/power/pm: Fix typos in comments

Fix typos in comments of drivers/power/pm/activity_governor.c and unify
comment style for consistency.

Signed-off-by: Hyunjun Lee <hyunjunk.lee@samsung.com>
This commit is contained in:
Hyunjun Lee
2026-02-02 15:20:48 +09:00
committed by simbit18
parent 16829666cb
commit 8dbc3e3122
+9 -6
View File
@@ -105,20 +105,23 @@ struct pm_domain_state_s
struct pm_activity_governor_s
{
/* Threshold time slice count to enter the next low power consdumption
* state. Indexing is next state 0:IDLE, 1: STANDBY, 2: SLEEP.
/* Threshold time slice count to enter the next lower power consumption
* state. This array is indexed by next state:
* 0: IDLE, 1: STANDBY, 2: SLEEP.
*/
const uint32_t pmcount[3];
/* Threshold activity values to enter into the next lower power consumption
* state. Indexing is next state 0:IDLE, 1:STANDBY, 2:SLEEP.
/* Threshold activity values to enter the next lower power consumption
* state. This array is indexed by next state:
* 0: IDLE, 1: STANDBY, 2: SLEEP.
*/
const int32_t pmenterthresh[3];
/* Threshold activity values to leave the current low power consdumption
* state. Indexing is current state 0:IDLE, 1: STANDBY, 2: SLEEP.
/* Threshold activity values to leave the current power consumption
* state. This array is indexed by current state:
* 0: IDLE, 1: STANDBY, 2: SLEEP.
*/
const int32_t pmexitthresh[3];