aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWisley Chen <wisley.chen@quantatw.com>2019-10-26 01:44:58 +0800
committerMartin Roth <martinroth@google.com>2019-10-27 22:43:02 +0000
commitd3856aad79496bb7d0914c69583dfb9a00323c08 (patch)
tree6d900b941870902fc55915f30687cbad1b5ab9af /src
parentf7856800b46ad44db093e19d1534c26b427ab41c (diff)
Dragonair: Add sku23
BUG=b:142987639 TEST=emerge-hatch coreboot Change-Id: I0ff1a81d0579d0b328a48bc7d4f867592ec63e8b Signed-off-by: Wisley Chen <wisley.chen@quantatw.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36335 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Philip Chen <philipchen@google.com> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/hatch/variants/dratini/include/variant/sku.h1
-rw-r--r--src/mainboard/google/hatch/variants/dratini/variant.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h b/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h
index 8ff2c79959..e36d335c1f 100644
--- a/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h
+++ b/src/mainboard/google/hatch/variants/dratini/include/variant/sku.h
@@ -19,6 +19,7 @@
enum {
SKU_21_DRAGONAIR = 21, /* TS + FPS + Stylus */
SKU_22_DRAGONAIR = 22, /* TS + KB_BL + FPS + Stylus */
+ SKU_23_DRAGONAIR = 23, /* TS + Stylus */
};
#endif /* __MAINBOARD_SKU_H__ */
diff --git a/src/mainboard/google/hatch/variants/dratini/variant.c b/src/mainboard/google/hatch/variants/dratini/variant.c
index da5db7f658..3a00385d1d 100644
--- a/src/mainboard/google/hatch/variants/dratini/variant.c
+++ b/src/mainboard/google/hatch/variants/dratini/variant.c
@@ -25,6 +25,7 @@ const char *get_wifi_sar_cbfs_filename(void)
switch (sku_id) {
case SKU_21_DRAGONAIR:
case SKU_22_DRAGONAIR:
+ case SKU_23_DRAGONAIR:
filename = "wifi_sar-dragonair.hex";
break;
}