diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-08-02 10:15:44 +1000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-08-13 05:01:58 +0200 |
commit | ef3a17bd88f3c751ef98d3be94eb922da14ce3c5 (patch) | |
tree | add50fba9f74cc92e6fc66c94c64a23186f885f9 /util/inteltool/gpio.c | |
parent | 691ff08e27b9f79e5178a0c3e6c51f9327f207d5 (diff) | |
download | coreboot-ef3a17bd88f3c751ef98d3be94eb922da14ce3c5.tar.gz coreboot-ef3a17bd88f3c751ef98d3be94eb922da14ce3c5.tar.bz2 coreboot-ef3a17bd88f3c751ef98d3be94eb922da14ce3c5.zip |
util/inteltool: Typo in dump output for 'GP_IO_SEL3'
The GPIO offset of '0x44 - GP_IO_SEL3' as specified in the pch.h header
is incorrectly reported as 'GPIO_SEL3'.
Change-Id: I56dcdda109d5f57ed45938d60b995807bdfb46b1
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/6459
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/inteltool/gpio.c')
-rw-r--r-- | util/inteltool/gpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c index 42e7272c235f..49c1325663bc 100644 --- a/util/inteltool/gpio.c +++ b/util/inteltool/gpio.c @@ -188,7 +188,7 @@ static const io_register_t ich10_gpio_registers[] = { { 0x38, 4, "GP_LVL2" }, { 0x3C, 4, "RESERVED" }, { 0x40, 4, "GPIO_USE_SEL3" }, - { 0x44, 4, "GPIO_SEL3" }, + { 0x44, 4, "GP_IO_SEL3" }, { 0x48, 4, "GPIO_LVL3" }, { 0x4c, 4, "RESERVED" }, { 0x50, 4, "RESERVED" }, @@ -242,7 +242,7 @@ static const io_register_t pch_gpio_registers[] = { { 0x38, 4, "GP_LVL2" }, { 0x3c, 4, "RESERVED" }, { 0x40, 4, "GPIO_USE_SEL3" }, - { 0x44, 4, "GPIO_SEL3" }, + { 0x44, 4, "GP_IO_SEL3" }, { 0x48, 4, "GPIO_LVL3" }, { 0x4c, 4, "RESERVED" }, { 0x50, 4, "RESERVED" }, |