summaryrefslogtreecommitdiff
path: root/src/vendorcode
diff options
context:
space:
mode:
authorKevin Chiu <Kevin.Chiu@quantatw.com>2020-08-21 20:56:04 +0800
committerPatrick Georgi <pgeorgi@google.com>2020-08-24 16:07:21 +0000
commitcc69f7b4e59b74990b6023fe6e13d7bcedf0e32e (patch)
treec8f06e1703b4a9c8132f824052cc96ec2f70d6a5 /src/vendorcode
parent638172b44e944a3345314c89acbfb27a5a37cb16 (diff)
downloadcoreboot-cc69f7b4e59b74990b6023fe6e13d7bcedf0e32e.tar.xz
vc/google/chromeos: load wifi_sar_defaults.hex as the main WiFi SAR CBFS source
Each variant WiFi SAR CBFS will be added with the default name "wifi_sar_defaults.hex". so we just need to look up the default CBFS file as the WiFi SAR source. BUG=b:159304570 BRANCH=zork TEST=1. cros-workon-zork start coreboot-private-files-zork 2. emerge-zork chromeos-config coreboot-private-files-zork \ coreboot chromeos-bootimage Change-Id: Idf859c7bdeb1f41b5144663ba1762e560dcfc789 Signed-off-by: Kevin Chiu <kevin.chiu@quantatw.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44672 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/vendorcode')
-rw-r--r--src/vendorcode/google/chromeos/sar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vendorcode/google/chromeos/sar.c b/src/vendorcode/google/chromeos/sar.c
index b07d41d3bd..2f73d39020 100644
--- a/src/vendorcode/google/chromeos/sar.c
+++ b/src/vendorcode/google/chromeos/sar.c
@@ -113,5 +113,5 @@ int get_wifi_sar_limits(struct wifi_sar_limits *sar_limits)
__weak
const char *get_wifi_sar_cbfs_filename(void)
{
- return NULL;
+ return WIFI_SAR_CBFS_FILENAME;
}