summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-10-25 23:57:44 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-10-26 22:08:24 +0000
commit711c0e5a5441a1f005907589ef565782a5290936 (patch)
treeaee6293731b76e5685c2ee0a7baf473b51ce9282 /src
parentb3b27f7dea3ac7170adfbfc7e6d4ca7bde9ab780 (diff)
downloadcoreboot-711c0e5a5441a1f005907589ef565782a5290936.tar.gz
coreboot-711c0e5a5441a1f005907589ef565782a5290936.tar.bz2
coreboot-711c0e5a5441a1f005907589ef565782a5290936.zip
mb/amd/bilby,mandolin: add missing string.h include
string.h defines the memset function. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I242a0382e7020681b6c3a25f75a2a91cbccbe815 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68844 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/amd/bilby/mainboard.c1
-rw-r--r--src/mainboard/amd/mandolin/mainboard.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/amd/bilby/mainboard.c b/src/mainboard/amd/bilby/mainboard.c
index 324c72edef75..c9310530d216 100644
--- a/src/mainboard/amd/bilby/mainboard.c
+++ b/src/mainboard/amd/bilby/mainboard.c
@@ -9,6 +9,7 @@
#include <soc/southbridge.h>
#include <soc/pci_devs.h>
#include <soc/platform_descriptors.h>
+#include <string.h>
#include <types.h>
#include <commonlib/helpers.h>
#include <soc/amd/picasso/chip.h>
diff --git a/src/mainboard/amd/mandolin/mainboard.c b/src/mainboard/amd/mandolin/mainboard.c
index 6ae3266154ad..43fa4152ff33 100644
--- a/src/mainboard/amd/mandolin/mainboard.c
+++ b/src/mainboard/amd/mandolin/mainboard.c
@@ -7,6 +7,7 @@
#include <soc/cpu.h>
#include <soc/southbridge.h>
#include <soc/pci_devs.h>
+#include <string.h>
#include <types.h>
#include <commonlib/helpers.h>
#include <soc/amd/picasso/chip.h>