diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-05-15 21:12:31 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-29 20:29:28 +0000 |
commit | e39db681dfd7c4127f1ac0e360e0930e72ef3ee3 (patch) | |
tree | 4f2e3ff9086fcc84047076e6125d14999cdb762d /src/mainboard/asus | |
parent | 27d02d8286aff64115ae593a189c38fdaf3ce769 (diff) |
src/mainboard: Add missing 'include <types.h>'
<types.h> is supposed to provide <stdint.h> and <stddef.h>.
So when <types.h> is included, <stdint.h> and/or <stddef.h> is removed.
Change-Id: I3b1a395cfe8b710fb6b468e68f4c92e063794568
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32811
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r-- | src/mainboard/asus/kcma-d8/romstage.c | 2 | ||||
-rw-r--r-- | src/mainboard/asus/kgpe-d16/romstage.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/asus/kcma-d8/romstage.c b/src/mainboard/asus/kcma-d8/romstage.c index 5d43a54272..6c40627823 100644 --- a/src/mainboard/asus/kcma-d8/romstage.c +++ b/src/mainboard/asus/kcma-d8/romstage.c @@ -17,7 +17,6 @@ * GNU General Public License for more details. */ -#include <stdint.h> #include <device/pci_def.h> #include <arch/io.h> #include <device/pci_ops.h> @@ -44,6 +43,7 @@ #include <cpu/amd/family_10h-family_15h/init_cpus.h> #include <arch/early_variables.h> #include <cbmem.h> +#include <types.h> #include "cpu/amd/quadcore/quadcore.c" diff --git a/src/mainboard/asus/kgpe-d16/romstage.c b/src/mainboard/asus/kgpe-d16/romstage.c index f7d30bda98..d017b0616a 100644 --- a/src/mainboard/asus/kgpe-d16/romstage.c +++ b/src/mainboard/asus/kgpe-d16/romstage.c @@ -17,7 +17,6 @@ * GNU General Public License for more details. */ -#include <stdint.h> #include <device/pci_def.h> #include <arch/io.h> #include <device/mmio.h> @@ -45,6 +44,7 @@ #include <cpu/amd/family_10h-family_15h/init_cpus.h> #include <arch/early_variables.h> #include <cbmem.h> +#include <types.h> #include "cpu/amd/quadcore/quadcore.c" |