summaryrefslogtreecommitdiff
path: root/common/accel_cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/accel_cal.c')
-rw-r--r--common/accel_cal.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/common/accel_cal.c b/common/accel_cal.c
index 533a14fbc4..0fe9fe7656 100644
--- a/common/accel_cal.c
+++ b/common/accel_cal.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -23,17 +23,17 @@ void accel_cal_reset(struct accel_cal *cal)
static inline int compute_temp_gate(const struct accel_cal *cal, fp_t temp)
{
- int gate = (int) fp_div(fp_mul(temp - CONFIG_ACCEL_CAL_MIN_TEMP,
- INT_TO_FP(cal->num_temp_windows)),
- TEMP_RANGE);
+ int gate = (int)fp_div(fp_mul(temp - CONFIG_ACCEL_CAL_MIN_TEMP,
+ INT_TO_FP(cal->num_temp_windows)),
+ TEMP_RANGE);
- return gate < cal->num_temp_windows
- ? gate : (cal->num_temp_windows - 1);
+ return gate < cal->num_temp_windows ? gate :
+ (cal->num_temp_windows - 1);
}
-test_mockable bool accel_cal_accumulate(
- struct accel_cal *cal, uint32_t timestamp, fp_t x, fp_t y, fp_t z,
- fp_t temp)
+test_mockable bool accel_cal_accumulate(struct accel_cal *cal,
+ uint32_t timestamp, fp_t x, fp_t y,
+ fp_t z, fp_t temp)
{
struct accel_cal_algo *algo;