summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxiong.huang <xiong.huang@bitland.corp-partner.google.com>2018-12-28 15:27:39 +0800
committerchrome-bot <chrome-bot@chromium.org>2019-01-03 15:04:42 -0800
commitb53abd8e57bcd4c643ce31822be176d8e364a0d9 (patch)
treeb7de89291e7d7c5f735fd5feb2fff2c002755430
parent356895e296f7f0ea045f6f4e0d7651b5aa876356 (diff)
downloadchrome-ec-b53abd8e57bcd4c643ce31822be176d8e364a0d9.tar.gz
phaser: add sku 5 for Laser
Add new SKU that is also a convertible. BRANCH=firmware-octopus-11297.B BUG=b:121457617 TEST=builds Change-Id: I15f2694c940796fe3869bbde87d3aa927f3e0446 Reviewed-on: https://chromium-review.googlesource.com/1392571 Commit-Ready: Justin TerAvest <teravest@chromium.org> Tested-by: Justin TerAvest <teravest@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org> Reviewed-by: Justin TerAvest <teravest@chromium.org>
-rw-r--r--board/phaser/board.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/phaser/board.c b/board/phaser/board.c
index a06e86367c..94e58e4e0b 100644
--- a/board/phaser/board.c
+++ b/board/phaser/board.c
@@ -190,7 +190,8 @@ unsigned int motion_sensor_count = ARRAY_SIZE(motion_sensors);
static int board_is_convertible(void)
{
- return sku_id == 2 || sku_id == 3 || sku_id == 4 || sku_id == 255;
+ return sku_id == 2 || sku_id == 3 || sku_id == 4 || sku_id == 5 || \
+ sku_id == 255;
}
static void board_update_sensor_config_from_sku(void)