summaryrefslogtreecommitdiffstats
path: root/src/mainboard/opencellular
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2018-10-10 14:22:48 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-10-17 12:01:06 +0000
commite1de6482d05509f8109c97ff2cd4270dddde1012 (patch)
tree7ebd1ad67f47be694a48e1fece360bc076c557fa /src/mainboard/opencellular
parent9814f8f037d4735f2f45b586c20573238d659b31 (diff)
downloadcoreboot-e1de6482d05509f8109c97ff2cd4270dddde1012.tar.gz
coreboot-e1de6482d05509f8109c97ff2cd4270dddde1012.tar.bz2
coreboot-e1de6482d05509f8109c97ff2cd4270dddde1012.zip
mb/*/*: Clean up FADT checksum assignment
The assignment of header->checksum was in some cases done twice, or unnecessarily split into two lines. Change-Id: Ib0c0890d7589e6a24b11e9bda10e6969c7d73c56 Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-on: https://review.coreboot.org/28988 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Diffstat (limited to 'src/mainboard/opencellular')
-rw-r--r--src/mainboard/opencellular/rotundu/fadt.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mainboard/opencellular/rotundu/fadt.c b/src/mainboard/opencellular/rotundu/fadt.c
index cd8eefdd67e1..4194bfc32493 100644
--- a/src/mainboard/opencellular/rotundu/fadt.c
+++ b/src/mainboard/opencellular/rotundu/fadt.c
@@ -25,8 +25,5 @@ void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
/* Platform specific customizations go here */
- header->checksum = 0;
- header->checksum =
- acpi_checksum((void *) fadt, sizeof(acpi_fadt_t));
-
+ header->checksum = acpi_checksum((void *) fadt, sizeof(acpi_fadt_t));
}