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>
This commit is contained in:
parent
691ff08e27
commit
ef3a17bd88
|
@ -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" },
|
||||
|
|
Loading…
Reference in New Issue