HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34262 )
Change subject: soc/amd/stoneyridge: Add missing typedef gpio_t ......................................................................
soc/amd/stoneyridge: Add missing typedef gpio_t
<soc/gpio.h> must typedef a gpio_t that fits in 32 bits.
Change-Id: Ib3e4b08df4419b20113059b513126830b5174e99 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/soc/amd/stoneyridge/include/soc/gpio.h 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/34262/1
diff --git a/src/soc/amd/stoneyridge/include/soc/gpio.h b/src/soc/amd/stoneyridge/include/soc/gpio.h index d8774f0..115462d 100644 --- a/src/soc/amd/stoneyridge/include/soc/gpio.h +++ b/src/soc/amd/stoneyridge/include/soc/gpio.h @@ -23,6 +23,9 @@ #include <soc/iomap.h> #include <amdblocks/gpio_banks.h>
+/* <soc/gpio.h> must typedef a gpio_t that fits in 32 bits. */ +typedef uint32_t gpio_t; + /* The following sections describe only the GPIOs defined for this SOC */
#define SOC_GPIO_TOTAL_PINS 149
HAOUAS Elyes has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/34262 )
Change subject: soc/amd/stoneyridge: Add missing typedef gpio_t ......................................................................
Abandoned