mirror of
https://github.com/apache/nuttx.git
synced 2026-05-20 20:44:39 +08:00
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:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user