summaryrefslogtreecommitdiffstats
path: root/src/include/sar.h
diff options
context:
space:
mode:
authorSugnan Prabhu S <sugnan.prabhu.s@intel.com>2021-09-06 15:05:56 +0530
committerPatrick Georgi <pgeorgi@google.com>2021-09-09 15:01:35 +0000
commit627c8443a3ddaded2c1cf4ac0811164eb1943815 (patch)
tree8a2118f2eedf32cd810dd152e8ec72a712d83599 /src/include/sar.h
parent7181cd28f26726856f8e19c7417bd15c3c559bd3 (diff)
downloadcoreboot-627c8443a3ddaded2c1cf4ac0811164eb1943815.tar.gz
coreboot-627c8443a3ddaded2c1cf4ac0811164eb1943815.tar.bz2
coreboot-627c8443a3ddaded2c1cf4ac0811164eb1943815.zip
wifi: Update deny list entry size to uint16_t
As per the connectivity document deny list entry size should be uint16 559910_Intel_Connectivity_Platforms_BIOS_Guidelines_Rev6_4.pdf Fixes: cc50770cd0("wifi: Add support for wifi time average SAR config") Change-Id: I045c21350cf4c2266df108eede6350d090322ba0 Signed-off-by: Sugnan Prabhu S <sugnan.prabhu.s@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57407 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/include/sar.h')
-rw-r--r--src/include/sar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/sar.h b/src/include/sar.h
index 5a4f7ae58a63..beccb377cd73 100644
--- a/src/include/sar.h
+++ b/src/include/sar.h
@@ -44,7 +44,7 @@ struct avg_profile {
uint8_t revision;
uint8_t tas_selection;
uint8_t tas_list_size;
- uint8_t deny_list_entry[MAX_DENYLIST_ENTRY];
+ uint16_t deny_list_entry[MAX_DENYLIST_ENTRY];
} __packed;
struct dsm_profile {