summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-06-23 07:07:49 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-07-25 16:06:43 +0000
commit231537bb8fa013b11e7fbbf3f0b7c7b1496ea210 (patch)
tree9fa9947d454724dffcd69a3669b5b5dc007e78fc
parent308185546b1f0a0083db80da7ebef7b254fa2129 (diff)
downloadcoreboot-231537bb8fa013b11e7fbbf3f0b7c7b1496ea210.tar.xz
soc/mediatek: Use 'include <stdlib.h>' when appropriate
Also including <types.h>, is supposed to provide stdint and stddef. Change-Id: Id6d881055826044d04843ba165641131b9111342 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33690 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
-rw-r--r--src/soc/mediatek/common/spi.c2
-rw-r--r--src/soc/mediatek/mt8173/flash_controller.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/mediatek/common/spi.c b/src/soc/mediatek/common/spi.c
index 1af6f105c3..40ab9b7002 100644
--- a/src/soc/mediatek/common/spi.c
+++ b/src/soc/mediatek/common/spi.c
@@ -17,10 +17,10 @@
#include <assert.h>
#include <console/console.h>
#include <endian.h>
-#include <stdlib.h>
#include <soc/pll.h>
#include <soc/spi.h>
#include <timer.h>
+#include <types.h>
#define MTK_SPI_DEBUG 0
diff --git a/src/soc/mediatek/mt8173/flash_controller.c b/src/soc/mediatek/mt8173/flash_controller.c
index bca2ecf98d..b491a41efd 100644
--- a/src/soc/mediatek/mt8173/flash_controller.c
+++ b/src/soc/mediatek/mt8173/flash_controller.c
@@ -21,12 +21,12 @@
#include <spi_flash.h>
#include <spi-generic.h>
#include <stdint.h>
-#include <stdlib.h>
#include <string.h>
#include <symbols.h>
#include <timer.h>
#include <soc/symbols.h>
#include <soc/flash_controller.h>
+#include <types.h>
#define get_nth_byte(d, n) ((d >> (8 * n)) & 0xff)