diff options
author | Jacob Garber <jgarber1@ualberta.ca> | 2019-08-08 13:35:31 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-08-10 01:33:58 +0000 |
commit | 5cf9ccc57d8de19692603fffe4b932475b22091b (patch) | |
tree | f4754b83175f262d22cb5e4823be4775388fdb9e /src/northbridge/amd/amdht | |
parent | 6b212d8fcff125a831c0ba068903afd0b22d292c (diff) | |
download | coreboot-5cf9ccc57d8de19692603fffe4b932475b22091b.tar.xz |
src: Include <stdint.h> instead of <inttypes.h>
The <inttypes.h> header currently does nothing but include the
definitions from <stdint.h>, so let's #include that directly instead.
Change-Id: I9d83ad37d0d7300a093001596ce3f0b3830c5701
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34800
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/northbridge/amd/amdht')
-rw-r--r-- | src/northbridge/amd/amdht/comlib.h | 2 | ||||
-rw-r--r-- | src/northbridge/amd/amdht/h3ncmn.h | 2 | ||||
-rw-r--r-- | src/northbridge/amd/amdht/ht_wrapper.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/amd/amdht/comlib.h b/src/northbridge/amd/amdht/comlib.h index dbc19f3cfa..98326b280f 100644 --- a/src/northbridge/amd/amdht/comlib.h +++ b/src/northbridge/amd/amdht/comlib.h @@ -17,7 +17,7 @@ #define COMLIB_H #include <assert.h> -#include <inttypes.h> +#include <stdint.h> #include <stdlib.h> #include "porting.h" diff --git a/src/northbridge/amd/amdht/h3ncmn.h b/src/northbridge/amd/amdht/h3ncmn.h index c007089e03..db057c0f1c 100644 --- a/src/northbridge/amd/amdht/h3ncmn.h +++ b/src/northbridge/amd/amdht/h3ncmn.h @@ -17,7 +17,7 @@ #ifndef H3NCMN_H #define H3NCMN_H -#include <inttypes.h> +#include <stdint.h> #include <device/pci.h> #include <cpu/amd/msr.h> diff --git a/src/northbridge/amd/amdht/ht_wrapper.h b/src/northbridge/amd/amdht/ht_wrapper.h index 331c3df5f3..629e08f4fe 100644 --- a/src/northbridge/amd/amdht/ht_wrapper.h +++ b/src/northbridge/amd/amdht/ht_wrapper.h @@ -18,7 +18,7 @@ #include <northbridge/amd/amdfam10/raminit.h> #include <northbridge/amd/amdfam10/amdfam10.h> -#include <inttypes.h> +#include <stdint.h> #include "h3finit.h" void amd_ht_fixup(struct sys_info *sysinfo); |