diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2019-03-08 11:19:43 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-03-18 09:17:19 +0000 |
commit | 0f681dc5e63564aa50415723cee4b4ae831c2a30 (patch) | |
tree | 00b4d012bdbfee12e658966dd083e2c716070e32 /src/include/cpu | |
parent | 51ffa7e810ee243b24848a25c8f5193910886b32 (diff) | |
download | coreboot-0f681dc5e63564aa50415723cee4b4ae831c2a30.tar.xz |
include/cpu/x86/pae.h: Add missing include
Add the include for size_t.
Fixes compilation error on source files that do not include it.
Change-Id: Ic752886d94db18de89b8b8a5e70cf03965aeb5c3
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31922
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/include/cpu')
-rw-r--r-- | src/include/cpu/x86/pae.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/cpu/x86/pae.h b/src/include/cpu/x86/pae.h index 51e47e1e85..7627187a52 100644 --- a/src/include/cpu/x86/pae.h +++ b/src/include/cpu/x86/pae.h @@ -2,6 +2,7 @@ #define CPU_X86_PAE_H #include <stdint.h> +#include <stddef.h> /* Enable paging with cr3 value for page directory pointer table as well as PAE option in cr4. */ |