aboutsummaryrefslogtreecommitdiff
path: root/src/soc/samsung
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-07-27 08:12:59 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-29 09:34:55 +0000
commit7884c22f1f2232005aa745596cddc789ea7b8130 (patch)
treed73ba086c470211d1c6d5921124d4108a5999615 /src/soc/samsung
parent9a5dd7accf5c7504852746ec63cfc07dcb22e456 (diff)
src/soc/samsung/exynos{5250,s5420}: Add missing <{stddef,stdint}.h>
Change-Id: I34b8083eb14d5f82699cf92744000a416d2816ea Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43944 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/soc/samsung')
-rw-r--r--src/soc/samsung/exynos5250/spi.c2
-rw-r--r--src/soc/samsung/exynos5420/spi.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/samsung/exynos5250/spi.c b/src/soc/samsung/exynos5250/spi.c
index 0451902df1..879d04a598 100644
--- a/src/soc/samsung/exynos5250/spi.c
+++ b/src/soc/samsung/exynos5250/spi.c
@@ -7,6 +7,8 @@
#include <soc/clk.h>
#include <soc/gpio.h>
#include <soc/spi.h>
+#include <stddef.h>
+#include <stdint.h>
#include <symbols.h>
#if defined(CONFIG_DEBUG_SPI) && CONFIG_DEBUG_SPI
diff --git a/src/soc/samsung/exynos5420/spi.c b/src/soc/samsung/exynos5420/spi.c
index 42ca5fcf9e..0a2f0275ac 100644
--- a/src/soc/samsung/exynos5420/spi.c
+++ b/src/soc/samsung/exynos5420/spi.c
@@ -6,6 +6,8 @@
#include <soc/cpu.h>
#include <soc/spi.h>
#include <spi-generic.h>
+#include <stddef.h>
+#include <stdint.h>
#include <string.h>
#include <symbols.h>