Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/59289 )
Change subject: util/inteltool/gpio.c: Correct register name ......................................................................
util/inteltool/gpio.c: Correct register name
The ICH10 and 6-series PCH datasheets 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 --- M util/inteltool/gpio.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/89/59289/1
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c index 5808204..30b80d8 100644 --- a/util/inteltool/gpio.c +++ b/util/inteltool/gpio.c @@ -173,7 +173,7 @@ { 0x3C, 4, "RESERVED" }, { 0x40, 4, "GPIO_USE_SEL3" }, { 0x44, 4, "GP_IO_SEL3" }, - { 0x48, 4, "GPIO_LVL3" }, + { 0x48, 4, "GP_LVL3" }, { 0x4c, 4, "RESERVED" }, { 0x50, 4, "RESERVED" }, { 0x54, 4, "RESERVED" }, @@ -227,7 +227,7 @@ { 0x3c, 4, "RESERVED" }, { 0x40, 4, "GPIO_USE_SEL3" }, { 0x44, 4, "GP_IO_SEL3" }, - { 0x48, 4, "GPIO_LVL3" }, + { 0x48, 4, "GP_LVL3" }, { 0x4c, 4, "RESERVED" }, { 0x50, 4, "RESERVED" }, { 0x54, 4, "RESERVED" },