summaryrefslogtreecommitdiffstats
path: root/src/southbridge/amd/agesa
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-10-11 13:20:43 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-10-12 14:17:32 +0000
commitbaec560c7a6178edb9ba1e4d1d1bd6aee1852d0d (patch)
tree724bb844006fd3e8eedb0a735c804575a146a8e5 /src/southbridge/amd/agesa
parent501b71e7bb1370bbd079169dae0cf3d779fc4276 (diff)
downloadcoreboot-baec560c7a6178edb9ba1e4d1d1bd6aee1852d0d.tar.gz
coreboot-baec560c7a6178edb9ba1e4d1d1bd6aee1852d0d.tar.bz2
coreboot-baec560c7a6178edb9ba1e4d1d1bd6aee1852d0d.zip
treewide: Use 'gpe0_blk_len' for 'x_gpe0_blk.bit_width'
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I581cacb6086d94fe65e6f4800454f447e1ada07b Reviewed-on: https://review.coreboot.org/c/coreboot/+/68272 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/southbridge/amd/agesa')
-rw-r--r--src/southbridge/amd/agesa/hudson/fadt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/agesa/hudson/fadt.c b/src/southbridge/amd/agesa/hudson/fadt.c
index de9cbea51a2a..acf3e69ca08b 100644
--- a/src/southbridge/amd/agesa/hudson/fadt.c
+++ b/src/southbridge/amd/agesa/hudson/fadt.c
@@ -86,7 +86,7 @@ void acpi_fill_fadt(acpi_fadt_t *fadt)
fadt->x_pm_tmr_blk.addrh = 0x0;
fadt->x_gpe0_blk.space_id = ACPI_ADDRESS_SPACE_IO;
- fadt->x_gpe0_blk.bit_width = 64; /* EventStatus + Event Enable */
+ fadt->x_gpe0_blk.bit_width = fadt->gpe0_blk_len * 8; /* EventStatus + Event Enable */
fadt->x_gpe0_blk.bit_offset = 0;
fadt->x_gpe0_blk.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
fadt->x_gpe0_blk.addrl = ACPI_GPE0_BLK;