util/inteltool/gpio.c: Correct register name

Document 319973-003 (ICH10 datasheet) and document 324645-006 (6-series
PCH datasheet) indicate that the name of this register is `GP_LVL3`,
not `GPIO_LVL3`. Correct the name.

Change-Id: I44cc41843c9f7cd0796bd198fb89447d787f155a
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59289
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Christian Walter <christian.walter@9elements.com>
Reviewed-by:  Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Angel Pons 2021-11-14 16:38:29 +01:00 committed by Felix Singer
parent f0e721050a
commit ada539ee50
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ static const io_register_t ich10_gpio_registers[] = {
{ 0x3C, 4, "RESERVED" }, { 0x3C, 4, "RESERVED" },
{ 0x40, 4, "GPIO_USE_SEL3" }, { 0x40, 4, "GPIO_USE_SEL3" },
{ 0x44, 4, "GP_IO_SEL3" }, { 0x44, 4, "GP_IO_SEL3" },
{ 0x48, 4, "GPIO_LVL3" }, { 0x48, 4, "GP_LVL3" },
{ 0x4c, 4, "RESERVED" }, { 0x4c, 4, "RESERVED" },
{ 0x50, 4, "RESERVED" }, { 0x50, 4, "RESERVED" },
{ 0x54, 4, "RESERVED" }, { 0x54, 4, "RESERVED" },
@ -227,7 +227,7 @@ static const io_register_t pch_gpio_registers[] = {
{ 0x3c, 4, "RESERVED" }, { 0x3c, 4, "RESERVED" },
{ 0x40, 4, "GPIO_USE_SEL3" }, { 0x40, 4, "GPIO_USE_SEL3" },
{ 0x44, 4, "GP_IO_SEL3" }, { 0x44, 4, "GP_IO_SEL3" },
{ 0x48, 4, "GPIO_LVL3" }, { 0x48, 4, "GP_LVL3" },
{ 0x4c, 4, "RESERVED" }, { 0x4c, 4, "RESERVED" },
{ 0x50, 4, "RESERVED" }, { 0x50, 4, "RESERVED" },
{ 0x54, 4, "RESERVED" }, { 0x54, 4, "RESERVED" },