diff options
author | Kapil Porwal <kapilporwal@google.com> | 2023-08-24 13:32:22 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2023-08-25 03:23:19 +0000 |
commit | 33a5722bd73280c20b11e46ae04a06b738925051 (patch) | |
tree | 8dcb15171716fe91fb55ae520541d917a2c5fbfc /src | |
parent | bfdefc2f9ae83c7ce8660ad7982cb66c89cf2f7c (diff) |
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 <kapilporwal@google.com>
Change-Id: I219b78a5e92d9c56799964ea88615c27aed2e92e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77401
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: David Wu <david_wu@quanta.corp-partner.google.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/rex/variants/karis/gpio.c | 6 |
1 files changed, 3 insertions, 3 deletions
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. */ |