Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/52551 )
Change subject: soc/amd/cezanne/chip.h: include missing types.h ......................................................................
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 --- M src/soc/amd/cezanne/chip.h 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Marshall Dawson: Looks good to me, approved Raul Rangel: Looks good to me, approved
diff --git a/src/soc/amd/cezanne/chip.h b/src/soc/amd/cezanne/chip.h index b2c3462..455de36 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;