HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34268 )
Change subject: soc/intel/fsp_baytrail: Add missing typedef gpio_t ......................................................................
soc/intel/fsp_baytrail: Add missing typedef gpio_t
<soc/gpio.h> must typedef a gpio_t that fits in 32 bits.
Change-Id: I63d59c3f41b7cfe223e8d37b72a388c8d09ac732 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/soc/intel/fsp_baytrail/include/soc/gpio.h 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/68/34268/1
diff --git a/src/soc/intel/fsp_baytrail/include/soc/gpio.h b/src/soc/intel/fsp_baytrail/include/soc/gpio.h index 3549894..b8b95d7 100644 --- a/src/soc/intel/fsp_baytrail/include/soc/gpio.h +++ b/src/soc/intel/fsp_baytrail/include/soc/gpio.h @@ -330,6 +330,9 @@ u32 sci : 1; } __packed;
+/* <soc/gpio.h> must typedef a gpio_t that fits in 32 bits. */ +typedef uint32_t gpio_t; + struct soc_gpio_config { const struct soc_gpio_map *ncore; const struct soc_gpio_map *score;