aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstanley.wu <stanley1.wu@lcfc.corp-partner.google.com>2021-06-01 12:27:49 +0800
committerPatrick Georgi <pgeorgi@google.com>2021-07-07 14:59:16 +0000
commit6142a989a1a5e87967d48e15beb1b92602500290 (patch)
tree6736f901d4d66d01621afc5b35b6a2262d3d6023
parent5aa511931f5a1069be1803f4f8fb4182e8d779ab (diff)
mb/google/dedede/var/boten: Modify Wifi-SAR sku condition
Due to new sku id apply for AMP ALC1015Q-VB. Modify correct WIFI-SAR detect condition for boten/botenflex sku. BUG=b:186174768 TEST=build and test on boten/botenflex Change-Id: I0a4fb08e558fee26534564aa5e37cac814c5a98a Signed-off-by: stanley.wu <stanley1.wu@lcfc.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55112 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
-rw-r--r--src/mainboard/google/dedede/variants/boten/variant.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/dedede/variants/boten/variant.c b/src/mainboard/google/dedede/variants/boten/variant.c
index 9afcb272e7..584ddb6d09 100644
--- a/src/mainboard/google/dedede/variants/boten/variant.c
+++ b/src/mainboard/google/dedede/variants/boten/variant.c
@@ -30,7 +30,7 @@ const char *get_wifi_sar_cbfs_filename(void)
{
uint32_t sku_id = google_chromeec_get_board_sku();
- if (sku_id == SKU_ID_BOTENFLEX)
+ if (sku_id >= SKU_ID_BOTENFLEX)
return "wifi_sar-botenflex.hex";
return "wifi_sar-boten.hex";