Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/87069?usp=email )
Change subject: mb/starlabs/starbook/adl_n: Tidy GPIO comments for debug connector ......................................................................
mb/starlabs/starbook/adl_n: Tidy GPIO comments for debug connector
This is a non-functional change, and only makes the GPIOs easier to read.
Change-Id: I1284e9947edca20d113ca2e810963fcfffb92831 Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/87069 Reviewed-by: Matt DeVillier matt.devillier@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/mainboard/starlabs/starbook/variants/adl_n/gpio.c 1 file changed, 3 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Matt DeVillier: Looks good to me, approved
diff --git a/src/mainboard/starlabs/starbook/variants/adl_n/gpio.c b/src/mainboard/starlabs/starbook/variants/adl_n/gpio.c index 11cab70..5f98b2b 100644 --- a/src/mainboard/starlabs/starbook/variants/adl_n/gpio.c +++ b/src/mainboard/starlabs/starbook/variants/adl_n/gpio.c @@ -4,10 +4,9 @@
/* Early pad configuration in bootblock */ const struct pad_config early_gpio_table[] = { - /* H10: UART0 RXD Debug Connector */ - PAD_CFG_NF(GPP_H10, NONE, DEEP, NF2), - /* H11: UART0 TXD Debug Connector */ - PAD_CFG_NF(GPP_H11, NONE, DEEP, NF2), + /* Debug Connector */ + PAD_CFG_NF(GPP_H10, NONE, DEEP, NF2), /* RXD */ + PAD_CFG_NF(GPP_H11, NONE, DEEP, NF2), /* TXD */ };
const struct pad_config *variant_early_gpio_table(size_t *num)