mb/google/octopus: fix droid lte sku load specific wifi sar value

This CL add droid lte sku 37 38 39 40 to load wifi_sar-droid.hex.

BUG=none
BRANCH=octopus
TEST=emerge-octopus coreboot

Signed-off-by: Pan Sheng-Liang <sheng-liang.pan@quanta.corp-partner.google.com>
Change-Id: I55dda85b8f3e664d97834b712a2c6a48d1434010
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47697
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Sheng-Liang Pan 2020-11-18 18:52:57 +08:00 committed by Patrick Georgi
parent b54212109e
commit 832dd4388a
1 changed files with 1 additions and 2 deletions

View File

@ -21,8 +21,7 @@ const char *get_wifi_sar_cbfs_filename(void)
const char *filename = NULL;
uint32_t sku_id = google_chromeec_get_board_sku();
if (sku_id == 33 || sku_id == 34 || sku_id == 35 || sku_id == 36 || sku_id == 41 ||
sku_id == 42 || sku_id == 43 || sku_id == 44)
if (sku_id >= 33 && sku_id <= 44)
filename = "wifi_sar-droid.hex";
return filename;