summaryrefslogtreecommitdiff
path: root/board/strago
diff options
context:
space:
mode:
authorGwendal Grignou <gwendal@chromium.org>2018-03-12 13:52:48 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-03-14 07:04:02 -0700
commitabde1bca995f018f4c1df8dc24a0a33c18557871 (patch)
tree19310b6df4beda45a457946f235e305424aab9a5 /board/strago
parentccea4b67f2e36a505ddf546bde284f75d728add0 (diff)
downloadchrome-ec-abde1bca995f018f4c1df8dc24a0a33c18557871.tar.gz
board: In motion sensor array, remove assignment to 0
Assignment to 0 are no necessary. BUG=none TEST=compile, check nami. BRANCH=none Change-Id: I1bc11efcff31cbfe2947580e7b8db0d5ba72d444 Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/959502
Diffstat (limited to 'board/strago')
-rw-r--r--board/strago/board.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/board/strago/board.c b/board/strago/board.c
index 38ad6f8292..05bd7fda17 100644
--- a/board/strago/board.c
+++ b/board/strago/board.c
@@ -211,26 +211,11 @@ struct motion_sensor_t motion_sensors[] = {
.min_frequency = KXCJ9_ACCEL_MIN_FREQ,
.max_frequency = KXCJ9_ACCEL_MAX_FREQ,
.config = {
- /* AP: by default shutdown all sensors */
- [SENSOR_CONFIG_AP] = {
- .odr = 0,
- .ec_rate = 0,
- },
/* EC use accel for angle detection */
[SENSOR_CONFIG_EC_S0] = {
.odr = 100000 | ROUND_UP_FLAG,
.ec_rate = 100 * MSEC,
},
- /* Sensor off in S3/S5 */
- [SENSOR_CONFIG_EC_S3] = {
- .odr = 0,
- .ec_rate = 0
- },
- /* Sensor off in S3/S5 */
- [SENSOR_CONFIG_EC_S5] = {
- .odr = 0,
- .ec_rate = 0
- },
}
},
{.name = "Lid Accel",
@@ -248,26 +233,11 @@ struct motion_sensor_t motion_sensors[] = {
.min_frequency = KXCJ9_ACCEL_MIN_FREQ,
.max_frequency = KXCJ9_ACCEL_MAX_FREQ,
.config = {
- /* AP: by default shutdown all sensors */
- [SENSOR_CONFIG_AP] = {
- .odr = 0,
- .ec_rate = 0,
- },
/* EC use accel for angle detection */
[SENSOR_CONFIG_EC_S0] = {
.odr = 100000 | ROUND_UP_FLAG,
.ec_rate = 100 * MSEC,
},
- /* Sensor off in S3/S5 */
- [SENSOR_CONFIG_EC_S3] = {
- .odr = 0,
- .ec_rate = 0
- },
- /* Sensor off in S3/S5 */
- [SENSOR_CONFIG_EC_S5] = {
- .odr = 0,
- .ec_rate = 0
- },
},
},
};