From 6f811f6d5c3f61ac54927a2aa660f35c7538de6b Mon Sep 17 00:00:00 2001 From: Felix Held Date: Mon, 10 Jan 2022 22:06:01 +0100 Subject: soc/amd/cezanne/include/i2c: add missing types.h include uintptr_t is defined in stdint.h which gets included by types.h. I use types.h instead of stdint.h, since that's also what the Picasso code does. Signed-off-by: Felix Held Change-Id: Id3d0811d831b5acc9343398f4d28c73467c0a429 Reviewed-on: https://review.coreboot.org/c/coreboot/+/60976 Tested-by: build bot (Jenkins) Reviewed-by: Marshall Dawson --- src/soc/amd/cezanne/include/soc/i2c.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/soc/amd/cezanne/include/soc/i2c.h b/src/soc/amd/cezanne/include/soc/i2c.h index 0bea365058..dba16db2db 100644 --- a/src/soc/amd/cezanne/include/soc/i2c.h +++ b/src/soc/amd/cezanne/include/soc/i2c.h @@ -4,6 +4,7 @@ #define AMD_CEZANNE_I2C_H #include +#include #define GPIO_I2C0_SCL BIT(0) #define GPIO_I2C1_SCL BIT(1) -- cgit v1.2.3