summaryrefslogtreecommitdiffstats
path: root/src/southbridge/amd/sb700/fadt.c
diff options
context:
space:
mode:
authorHimanshu Sahdev <himanshusah@hcl.com>2019-09-23 16:29:30 +0530
committerPatrick Georgi <pgeorgi@google.com>2019-10-09 22:14:54 +0000
commitfa6024e15e2af42be515064c404cb50e3892e3d4 (patch)
tree0015ce4972352f2f9a415400fa15c366937efbaf /src/southbridge/amd/sb700/fadt.c
parent9b93383f5b7b7e27692a8a55ad2f666dd6f08c62 (diff)
downloadcoreboot-fa6024e15e2af42be515064c404cb50e3892e3d4.tar.gz
coreboot-fa6024e15e2af42be515064c404cb50e3892e3d4.tar.bz2
coreboot-fa6024e15e2af42be515064c404cb50e3892e3d4.zip
acpi_table_header: Replace hard-coded length via sizeof(acpi_fadt_t)
Minimize use of hard-coded value for acpi_table_header->length to soft code. Replace length of acpi_header_t with sizeof(acpi_fadt_t). Change-Id: Ibcae72e8f02497719fcd3f180838557e8e9abd38 Signed-off-by: Himanshu Sahdev <himanshusah@hcl.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35540 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Richard Spiegel <richard.spiegel@silverbackltd.com>
Diffstat (limited to 'src/southbridge/amd/sb700/fadt.c')
-rw-r--r--src/southbridge/amd/sb700/fadt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/sb700/fadt.c b/src/southbridge/amd/sb700/fadt.c
index 4a5746ccd7dd..c81e644aa728 100644
--- a/src/southbridge/amd/sb700/fadt.c
+++ b/src/southbridge/amd/sb700/fadt.c
@@ -36,7 +36,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
/* Prepare the header */
memset((void *)fadt, 0, sizeof(acpi_fadt_t));
memcpy(header->signature, "FACP", 4);
- header->length = 244;
+ header->length = sizeof(acpi_fadt_t);
header->revision = get_acpi_table_revision(FADT);
memcpy(header->oem_id, OEM_ID, 6);
memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);