mb/system76/lemp9: gpio: convert PAD_CFG_TERM_GPO to PAD_CFG_GPO
Convert PAD_CFG_TERM_GPO with pull "NONE" to its shorter equivalent PAD_CFG_GPO. Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Change-Id: I9ed4d97ba184fa3e72425d5d16042a142b0640b4 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43649 Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
dd70d28ef7
commit
90041ef886
|
@ -117,7 +117,7 @@ static const struct pad_config gpio_table[] = {
|
|||
// NC
|
||||
PAD_NC(GPP_A19, UP_20K),
|
||||
// TEST_R
|
||||
PAD_CFG_TERM_GPO(GPP_A20, 0, NONE, DEEP),
|
||||
PAD_CFG_GPO(GPP_A20, 0, DEEP),
|
||||
// NC
|
||||
PAD_NC(GPP_A21, UP_20K),
|
||||
// NC
|
||||
|
@ -225,7 +225,7 @@ static const struct pad_config gpio_table[] = {
|
|||
// NC
|
||||
PAD_NC(GPP_C12, UP_20K),
|
||||
// SSD_PWR_DN#
|
||||
PAD_CFG_TERM_GPO(GPP_C13, 1, NONE, PLTRST),
|
||||
PAD_CFG_GPO(GPP_C13, 1, PLTRST),
|
||||
// NC
|
||||
PAD_NC(GPP_C14, UP_20K),
|
||||
// NC
|
||||
|
@ -274,7 +274,7 @@ static const struct pad_config gpio_table[] = {
|
|||
// NC
|
||||
PAD_NC(GPP_D7, UP_20K),
|
||||
// SB_BLON
|
||||
PAD_CFG_TERM_GPO(GPP_D8, 1, NONE, DEEP),
|
||||
PAD_CFG_GPO(GPP_D8, 1, DEEP),
|
||||
|
||||
// GSPI2
|
||||
// SWI#
|
||||
|
@ -290,7 +290,7 @@ static const struct pad_config gpio_table[] = {
|
|||
// NC
|
||||
PAD_NC(GPP_D13, UP_20K),
|
||||
// SSD2_PWR_DN#
|
||||
PAD_CFG_TERM_GPO(GPP_D14, 1, NONE, PLTRST),
|
||||
PAD_CFG_GPO(GPP_D14, 1, PLTRST),
|
||||
// NC
|
||||
PAD_NC(GPP_D15, UP_20K),
|
||||
// NC
|
||||
|
|
Loading…
Reference in New Issue