Skip to content

Commit 785f968

Browse files
Ting ShenCommit Bot
Ting Shen
authored and
Commit Bot
committed
asurada: fix incorrect sensor name
Rename incorrect "Lid Mag" to "Base Mag", and "Gyro" to "Base Gyro" for consistency. BUG=None TEST=`accelinfo` BRANCH=None Signed-off-by: Ting Shen <[email protected]> Change-Id: Id9072f038cf5e484679e9d6b64249f008dcce274 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2226094 Tested-by: Ting Shen <[email protected]> Auto-Submit: Ting Shen <[email protected]> Reviewed-by: Eric Yilun Lin <[email protected]> Commit-Queue: Ting Shen <[email protected]>
1 parent a6bc401 commit 785f968

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

board/asurada/board.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ struct motion_sensor_t motion_sensors[] = {
426426
},
427427
},
428428
[BASE_GYRO] = {
429-
.name = "Gyro",
429+
.name = "Base Gyro",
430430
.active_mask = SENSOR_ACTIVE_S0_S3,
431431
.chip = MOTIONSENSE_CHIP_BMI160,
432432
.type = MOTIONSENSE_TYPE_GYRO,
@@ -442,7 +442,7 @@ struct motion_sensor_t motion_sensors[] = {
442442
.max_frequency = BMI_GYRO_MAX_FREQ,
443443
},
444444
[BASE_MAG] = {
445-
.name = "Lid Mag",
445+
.name = "Base Mag",
446446
.active_mask = SENSOR_ACTIVE_S0_S3,
447447
.chip = MOTIONSENSE_CHIP_BMI160,
448448
.type = MOTIONSENSE_TYPE_MAG,

0 commit comments

Comments
 (0)