diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-04-20 22:22:48 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-04-21 22:11:53 +0000 |
commit | 02bfbf44305d1c7d562b9425da53d43d398061cd (patch) | |
tree | 1c1d366259d191ff3e6d17011368c87be4189ee7 /src/soc/amd | |
parent | a060e3ce5ca2322da9f7b2b9cc8e10f29005b816 (diff) |
soc/amd/cezanne/chip.h: include missing types.h
Since we use uintX_t, bool and friends, we need to make sure to include
the corresponding definitions.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Icb8a6e93d7f1923ac95e584fb3e33c391963f5ab
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52551
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/cezanne/chip.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/chip.h b/src/soc/amd/cezanne/chip.h index b2c346252b..455de369a4 100644 --- a/src/soc/amd/cezanne/chip.h +++ b/src/soc/amd/cezanne/chip.h @@ -6,6 +6,7 @@ #include <amdblocks/chip.h> #include <soc/i2c.h> #include <drivers/i2c/designware/dw_i2c.h> +#include <types.h> struct soc_amd_cezanne_config { struct soc_amd_common_config common_config; |