summaryrefslogtreecommitdiff
path: root/src/drivers/spi/spi-generic.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-06-23 06:57:53 +0200
committerMartin Roth <martinroth@google.com>2019-10-27 17:52:05 +0000
commitede8dd0b9c0dcf1a2f1478e5cb4e035c148b9ed1 (patch)
tree5e508448b1b823ae1025e56b48a495325b7d3b80 /src/drivers/spi/spi-generic.c
parent0edf6a59f8b5ad5dd6911078f349357fd36625ab (diff)
downloadcoreboot-ede8dd0b9c0dcf1a2f1478e5cb4e035c148b9ed1.tar.xz
src/{device,drivers}: Use 'include <stdlib.h>' when appropriate
Also, including <types.h>, is supposed to provide stdint and stddef. Change-Id: I99918a5a77e759bc7d4192d2c3fd6ad493c70248 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33681 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/drivers/spi/spi-generic.c')
-rw-r--r--src/drivers/spi/spi-generic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/spi/spi-generic.c b/src/drivers/spi/spi-generic.c
index 28402182dd..05bfb82bf8 100644
--- a/src/drivers/spi/spi-generic.c
+++ b/src/drivers/spi/spi-generic.c
@@ -14,6 +14,8 @@
#include <assert.h>
#include <spi-generic.h>
+#include <stddef.h>
+#include <stdlib.h>
#include <string.h>
int spi_claim_bus(const struct spi_slave *slave)