src/soc: Add missing 'include <types.h>'

<types.h> is supposed to provide <stdint.h> and <stddef.h>.
When <types.h> is included, <stdint.h> and/or <stddef.h> is removed.

Change-Id: I2db0a647bc657a3626cb5e78f23e9198e290261a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32810
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
This commit is contained in:
Elyes HAOUAS
2019-05-15 21:11:39 +02:00
committed by Patrick Georgi
parent ab89edbccf
commit 27d02d8286
21 changed files with 25 additions and 12 deletions

View File

@@ -16,6 +16,7 @@
#include <device/mmio.h>
#include <assert.h>
#include <soc/pll.h>
#include <types.h>
#define GENMASK(h, l) (BIT(h + 1) - BIT(l))

View File

@@ -19,6 +19,7 @@
#include <stddef.h>
#include <soc/addressmap.h>
#include <soc/ddp.h>
#include <types.h>
#define RDMA_FIFO_PSEUDO_SIZE(bytes) (((bytes) / 16) << 16)
#define RDMA_OUTPUT_VALID_FIFO_THRESHOLD(bytes) ((bytes) / 16)

View File

@@ -16,11 +16,10 @@
#include <device/mmio.h>
#include <assert.h>
#include <delay.h>
#include <stddef.h>
#include <soc/addressmap.h>
#include <soc/infracfg.h>
#include <soc/pll.h>
#include <types.h>
enum mux_id {
TOP_AXI_SEL,

View File

@@ -18,6 +18,7 @@
#include <soc/rtc.h>
#include <soc/mt6391.h>
#include <soc/pmic_wrap.h>
#include <types.h>
#define RTC_GPIO_USER_MASK ((1 << 13) - (1 << 8))