diff options
author | YH Lin <yueherngl@google.com> | 2023-08-31 09:41:31 -0700 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-09-02 16:22:07 +0000 |
commit | fd6908a748ad00aa6557e08309b9aad9abcdceb2 (patch) | |
tree | e9088a4bd2d987d004a43aa51a6e7bdbba8f97df /src/mainboard/google/rex/variants/screebo/variant.c | |
parent | f03a6ef1131a4f758f8bfa8aabea345e36ceb5bd (diff) |
mb/google/rex/var/screebo: add hook for WiFi SAR table
As a preparation for WiFi SAR table addition, adding hook for it.
BUG=b:291155207
TEST=emerge-rex coreboot
Change-Id: Ia313cfddec278e6bf8498407b242c027a5891deb
Signed-off-by: YH Lin <yueherngl@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77598
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/rex/variants/screebo/variant.c')
-rw-r--r-- | src/mainboard/google/rex/variants/screebo/variant.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mainboard/google/rex/variants/screebo/variant.c b/src/mainboard/google/rex/variants/screebo/variant.c index 4044fd4025..4ea659863e 100644 --- a/src/mainboard/google/rex/variants/screebo/variant.c +++ b/src/mainboard/google/rex/variants/screebo/variant.c @@ -3,6 +3,12 @@ #include <chip.h> #include <fw_config.h> #include <baseboard/variants.h> +#include <sar.h> + +const char *get_wifi_sar_cbfs_filename(void) +{ + return get_wifi_sar_fw_config_filename(FW_CONFIG_FIELD(WIFI_SAR_ID)); +} void variant_update_soc_chip_config(struct soc_intel_meteorlake_config *config) { |