Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[powersavemode] Fix array data indentation
Looks like automatic code re-flow were done in wrong mode.

Signed-off-by: Simo Piiroinen <simo.piiroinen@jollamobile.com>
  • Loading branch information
spiiroin committed Dec 21, 2018
1 parent 53f7263 commit 5f68312
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/powersavemode.c
Expand Up @@ -306,19 +306,19 @@ static datapipe_handler_t mce_psm_datapipe_handlers[] =
// output triggers
{
.datapipe = &battery_level_pipe,
.output_cb = battery_level_trigger,
.output_cb = battery_level_trigger,
},
{
.datapipe = &charger_state_pipe,
.output_cb = charger_state_trigger,
.output_cb = charger_state_trigger,
},
{
.datapipe = &thermal_state_pipe,
.output_cb = thermal_state_trigger,
.output_cb = thermal_state_trigger,
},
// sentinel
{
.datapipe = 0,
.datapipe = 0,
}
};

Expand Down

0 comments on commit 5f68312

Please sign in to comment.