diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-10-29 06:56:52 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-10-30 09:41:08 +0000 |
commit | dfbe6bd5c38d5feb6aa2778b2351cb13e0b1ecc8 (patch) | |
tree | bb12699462930eb270314a1db317a454cd7ff4c6 /src/soc/intel/braswell/include | |
parent | b06f8ddfe8c0e18f962f8b5507a40f4ef430ffc1 (diff) |
src: Add missing include <stdint.h>
Change-Id: I6a9d71e69ed9230b92f0f330875515a5df29fc06
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/29312
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/braswell/include')
-rw-r--r-- | src/soc/intel/braswell/include/soc/iomap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/braswell/include/soc/iomap.h b/src/soc/intel/braswell/include/soc/iomap.h index a07490280e..c61983b446 100644 --- a/src/soc/intel/braswell/include/soc/iomap.h +++ b/src/soc/intel/braswell/include/soc/iomap.h @@ -17,7 +17,6 @@ #ifndef _SOC_IOMAP_H_ #define _SOC_IOMAP_H_ - /* * Memory Mapped IO bases. */ @@ -81,6 +80,8 @@ #define SMBUS_BASE_ADDRESS 0xefa0 #ifndef __ACPI__ +#include <stdint.h> + /* Read Top of Low Memory (BMBOUND) */ uint32_t nc_read_top_of_low_memory(void); #endif |