summaryrefslogtreecommitdiff
path: root/common/mock/battery_mock.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/mock/battery_mock.c')
-rw-r--r--common/mock/battery_mock.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/common/mock/battery_mock.c b/common/mock/battery_mock.c
index 63e94c660b..0d6b4fdb22 100644
--- a/common/mock/battery_mock.c
+++ b/common/mock/battery_mock.c
@@ -1,4 +1,4 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -141,7 +141,7 @@ void set_battery_time_to_full(int new_value)
}
#define MAX_DEVICE_NAME_LENGTH 40
-static char battery_device_name_value[MAX_DEVICE_NAME_LENGTH+1] = "?";
+static char battery_device_name_value[MAX_DEVICE_NAME_LENGTH + 1] = "?";
int battery_device_name(char *dest, int size)
{
int i;
@@ -159,12 +159,13 @@ void set_battery_device_name(char *new_value)
for (i = 0; i < size && i < MAX_DEVICE_NAME_LENGTH; ++i)
battery_device_name_value[i] = new_value[i];
- for (; i < MAX_DEVICE_NAME_LENGTH+1; ++i)
+ for (; i < MAX_DEVICE_NAME_LENGTH + 1; ++i)
battery_device_name_value[i] = '\0';
}
#define MAX_DEVICE_CHEMISTRY_LENGTH 40
-static char battery_device_chemistry_value[MAX_DEVICE_CHEMISTRY_LENGTH+1] = "?";
+static char battery_device_chemistry_value[MAX_DEVICE_CHEMISTRY_LENGTH + 1] =
+ "?";
int battery_device_chemistry(char *dest, int size)
{
int i;
@@ -182,7 +183,7 @@ void set_battery_device_chemistry(char *new_value)
for (i = 0; i < size && i < MAX_DEVICE_CHEMISTRY_LENGTH; ++i)
battery_device_chemistry_value[i] = new_value[i];
- for (; i < MAX_DEVICE_CHEMISTRY_LENGTH+1; ++i)
+ for (; i < MAX_DEVICE_CHEMISTRY_LENGTH + 1; ++i)
battery_device_chemistry_value[i] = '\0';
}
@@ -194,7 +195,7 @@ static int battery_temperature_value = 20;
static int battery_voltage_value = 5000;
void battery_get_params(struct batt_params *batt)
{
- struct batt_params batt_new = {0};
+ struct batt_params batt_new = { 0 };
batt_new.temperature = battery_temperature_value;
batt_new.state_of_charge = battery_soc_value;