mb/google/poppy/variants/nami: Fix GPIO config for PCH_SPK_EN

PCH_SPK_EN uses GPP_A23 and not GPP_A22. This change fixes the gpio
configuration error in the initial change 903472c
(mb/google/poppy/variants/nami: Add support for nami board).

BUG=b:70160119

Change-Id: I90d9c009369c53cfec47fe77356e181d5ecf7ad5
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/22844
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Furquan Shaikh 2017-12-13 10:06:09 -08:00
parent 3cf94032bc
commit 169c9dda39
1 changed files with 4 additions and 4 deletions

View File

@ -57,10 +57,10 @@ static const struct pad_config gpio_table[] = {
PAD_CFG_NC(GPP_A20),
/* A21 : ISH_GP3 ==> NC */
PAD_CFG_NC(GPP_A21),
/* A22 : ISH_GP4 ==> PCH_SPK_EN */
PAD_CFG_GPO(GPP_A22, 1, DEEP),
/* A23 : ISH_GP5 ==> NC */
PAD_CFG_NC(GPP_A23),
/* A22 : ISH_GP4 ==> NC */
PAD_CFG_NC(GPP_A22),
/* A23 : ISH_GP5 ==> PCH_SPK_EN */
PAD_CFG_GPO(GPP_A23, 1, DEEP),
/* B0 : CORE_VID0 ==> NC(T3) */
PAD_CFG_NC(GPP_B0),