Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/43944 )
Change subject: src/soc/samsung/exynos{5250,s5420}: Add missing <{stddef,stdint}.h> ......................................................................
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 --- M src/soc/samsung/exynos5250/spi.c M src/soc/samsung/exynos5420/spi.c 2 files changed, 4 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Julius Werner: Looks good to me, approved
diff --git a/src/soc/samsung/exynos5250/spi.c b/src/soc/samsung/exynos5250/spi.c index 0451902..879d04a 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 42ca5fc..0a2f027 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>