Jérémy Compostella has submitted this change. ( https://review.coreboot.org/c/coreboot/+/85586?usp=email )
Change subject: drivers/wifi: Update Drive Strength BRI Rsp Table revision ......................................................................
drivers/wifi: Update Drive Strength BRI Rsp Table revision
According to document 559910 Intel Connectivity Platforms BIOS Guideline revision 8.2 and 9.2 specifications, both revision 0 and 1 are supported and share the same structure.
BUG=b:346600091
Change-Id: Id0e05a9db48445b9254701d2a09c19bfbd477284 Signed-off-by: Jeremy Compostella jeremy.compostella@intel.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/85586 Reviewed-by: YH Lin yueherngl@google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Subrata Banik subratabanik@google.com --- M src/drivers/wifi/generic/acpi.c M src/include/sar.h 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: Subrata Banik: Looks good to me, approved build bot (Jenkins): Verified YH Lin: Looks good to me, approved
diff --git a/src/drivers/wifi/generic/acpi.c b/src/drivers/wifi/generic/acpi.c index 4470553..7820987 100644 --- a/src/drivers/wifi/generic/acpi.c +++ b/src/drivers/wifi/generic/acpi.c @@ -985,7 +985,7 @@ * } } }) */ - if (dsbr->revision != DSBR_REVISION) { + if (dsbr->revision > DSBR_REVISION) { printk(BIOS_ERR, "Unsupported DSBR table revision: %d\n", dsbr->revision); return; diff --git a/src/include/sar.h b/src/include/sar.h index 94763b4..d8c0e05 100644 --- a/src/include/sar.h +++ b/src/include/sar.h @@ -21,7 +21,7 @@ #define BDMM_REVISION 1 #define EBRD_REVISION 1 #define WPFC_REVISION 0 -#define DSBR_REVISION 0 +#define DSBR_REVISION 1 #define REVISION_SIZE 1 #define SAR_REV0_CHAINS_COUNT 2 #define SAR_REV0_SUBBANDS_COUNT 5