diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-11-01 11:29:50 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-11-01 11:25:07 +0000 |
commit | c4e41937150beab78ba5d492b7b22799d20a0ee4 (patch) | |
tree | f8248eb3b2988bc5d3384b96f87bb848f6876134 /src/include | |
parent | 1956a00953d8eac277b0eb508fcfe60c8f4e1141 (diff) | |
download | coreboot-c4e41937150beab78ba5d492b7b22799d20a0ee4.tar.xz |
src: Add missing include <stdint.h>
Change-Id: Idf10a09745756887a517da4c26db7a90a1bf9543
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/29403
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/cpu/amd/vr.h | 2 | ||||
-rw-r--r-- | src/include/device/path.h | 2 | ||||
-rw-r--r-- | src/include/swab.h | 9 |
3 files changed, 10 insertions, 3 deletions
diff --git a/src/include/cpu/amd/vr.h b/src/include/cpu/amd/vr.h index e5ab840b58..8c62e442b5 100644 --- a/src/include/cpu/amd/vr.h +++ b/src/include/cpu/amd/vr.h @@ -7,6 +7,8 @@ #ifndef CPU_AMD_VR_H #define CPU_AMD_VR_H +#include <stdint.h> + #define VRC_INDEX 0xAC1C // Index register #define VRC_DATA 0xAC1E // Data register #define VR_UNLOCK 0xFC53 // Virtual register unlock code diff --git a/src/include/device/path.h b/src/include/device/path.h index 0d9c681c88..6736bede69 100644 --- a/src/include/device/path.h +++ b/src/include/device/path.h @@ -1,6 +1,8 @@ #ifndef DEVICE_PATH_H #define DEVICE_PATH_H +#include <stdint.h> + enum device_path_type { DEVICE_PATH_NONE = 0, DEVICE_PATH_ROOT, diff --git a/src/include/swab.h b/src/include/swab.h index 7d781a089e..956cfa5532 100644 --- a/src/include/swab.h +++ b/src/include/swab.h @@ -1,6 +1,3 @@ -#ifndef _SWAB_H -#define _SWAB_H - /* * linux/byteorder/swab.h * Byte-swapping, independently from CPU endianness @@ -18,6 +15,12 @@ /* casts are necessary for constants, because we never know how for sure * how U/UL/ULL map to __u16, __u32, __u64. At least not in a portable way. */ + +#ifndef _SWAB_H +#define _SWAB_H + +#include <stdint.h> + #define swab16(x) \ ((unsigned short)( \ (((unsigned short)(x) & (unsigned short)0x00ffU) << 8) | \ |