From 33a5722bd73280c20b11e46ae04a06b738925051 Mon Sep 17 00:00:00 2001 From: Kapil Porwal Date: Thu, 24 Aug 2023 13:32:22 +0000 Subject: mb/google/rex/var/karis: Fix incorrect GPIO pad numbers Fix incorrect GPIO pad numbers. GPP_F19 was mistakenly used instead of GPP_F14, GPP_F15 and GPP_F16 GPIOs. BUG=none TEST=none Signed-off-by: Kapil Porwal Change-Id: I219b78a5e92d9c56799964ea88615c27aed2e92e Reviewed-on: https://review.coreboot.org/c/coreboot/+/77401 Reviewed-by: Subrata Banik Reviewed-by: David Wu Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) --- src/mainboard/google/rex/variants/karis/gpio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/mainboard/google/rex/variants/karis/gpio.c b/src/mainboard/google/rex/variants/karis/gpio.c index e4a551dfb5..f45fca5fa8 100644 --- a/src/mainboard/google/rex/variants/karis/gpio.c +++ b/src/mainboard/google/rex/variants/karis/gpio.c @@ -253,11 +253,11 @@ static const struct pad_config gpio_table[] = { /* GPP_F13 : GSPI1_SOC_DI_FPMCU_DO_LS_R */ PAD_CFG_NF(GPP_F13, NONE, DEEP, NF5), /* GPP_F14 : net NC. */ - PAD_NC(GPP_F19, NONE), + PAD_NC(GPP_F14, NONE), /* GPP_F15 : net NC. */ - PAD_NC(GPP_F19, NONE), + PAD_NC(GPP_F15, NONE), /* GPP_F16 : net NC. */ - PAD_NC(GPP_F19, NONE), + PAD_NC(GPP_F16, NONE), /* GPP_F17 : [] ==> GSPI1_SOC_CS_L */ PAD_CFG_NF(GPP_F17, NONE, DEEP, NF5), /* GPP_F18 : net NC. */ -- cgit v1.2.3