diff options
author | Werner Zeh <werner.zeh@siemens.com> | 2023-01-10 16:44:23 +0100 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-01-11 06:41:39 +0000 |
commit | 6ffbae39b5960124452b158ccc5ae73abc964a8d (patch) | |
tree | 1603cc002bf6f521458739c0bfa5822fc667d973 /src/soc/intel/elkhartlake | |
parent | 4954a0f611475f3deea768f700f9f4b59bfc5304 (diff) |
soc/intel/elkhartlake/chip.h: Include types.h instead of stdint.h
As the used 'bool' type is defined in stdbool.h, include types.h
(instead of stdint.h) which includes all needed header files.
Change-Id: I3f75776575a7a5f70484411b9f3458530f706ec4
Signed-off-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71790
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/elkhartlake')
-rw-r--r-- | src/soc/intel/elkhartlake/chip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/elkhartlake/chip.h b/src/soc/intel/elkhartlake/chip.h index d419027478..ea6ac8234b 100644 --- a/src/soc/intel/elkhartlake/chip.h +++ b/src/soc/intel/elkhartlake/chip.h @@ -17,7 +17,7 @@ #include <soc/pmc.h> #include <soc/serialio.h> #include <soc/usb.h> -#include <stdint.h> +#include <types.h> #define MAX_HD_AUDIO_SDI_LINKS 2 #define MAX_HD_AUDIO_DMIC_LINKS 2 |