Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/61508 )
Change subject: drivers/i2c/designware/dw_i2c: add missing types.h include ......................................................................
drivers/i2c/designware/dw_i2c: add missing types.h include
This will provide the definitions for size_t, uint32_t and uintptr_t.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Icda8d458565bf981545d720d612cbdace04bedd4 --- M src/drivers/i2c/designware/dw_i2c.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/08/61508/1
diff --git a/src/drivers/i2c/designware/dw_i2c.c b/src/drivers/i2c/designware/dw_i2c.c index a6498fb..1f7433e 100644 --- a/src/drivers/i2c/designware/dw_i2c.c +++ b/src/drivers/i2c/designware/dw_i2c.c @@ -8,6 +8,7 @@ #include <device/i2c_simple.h> #include <string.h> #include <timer.h> +#include <types.h> #include "dw_i2c.h"
/* Use a ~10ms timeout for various operations */