diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-11-01 18:42:39 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-11-04 11:35:35 +0000 |
commit | a0365c580905adddd275cd9e55296f5d5900d3b9 (patch) | |
tree | c7b8e268e983a53ccad26045b368e283ec86fec9 /src/southbridge/intel/i82801jx/nvs.h | |
parent | 6190d0bfe6602872ad39fb3caac327551ad9ddb0 (diff) | |
download | coreboot-a0365c580905adddd275cd9e55296f5d5900d3b9.tar.xz |
sb/intel/i82801jx/nvs.h: include required header
u8, u16, ... are defined in stdint.h.
Change-Id: I045438a7e754d4da936cf2ded411d055f2f69b45
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36556
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/i82801jx/nvs.h')
-rw-r--r-- | src/southbridge/intel/i82801jx/nvs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82801jx/nvs.h b/src/southbridge/intel/i82801jx/nvs.h index ca66985746..88944c0ebd 100644 --- a/src/southbridge/intel/i82801jx/nvs.h +++ b/src/southbridge/intel/i82801jx/nvs.h @@ -13,6 +13,8 @@ * GNU General Public License for more details. */ +#include <stdint.h> + typedef struct { /* Miscellaneous */ u16 osys; /* 0x00 - Operating System */ |