Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/43068 )
Change subject: util/inteltool/gpio_names: Make group and community titles consistent ......................................................................
util/inteltool/gpio_names: Make group and community titles consistent
Consistency is good for scripting and automation. The lowercase "group" in Sunrise Point-LP, for example, was breaking pattern matching used in intelp2m.
Change-Id: Iffa8a8ac9c17c5cbd8d7b838d9c703cae6a858b5 Signed-off-by: Benjamin Doron benjamin.doron00@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/43068 Reviewed-by: Angel Pons th3fanbus@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M util/inteltool/gpio_names/cannonlake.h M util/inteltool/gpio_names/sunrise.h 2 files changed, 5 insertions(+), 5 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved
diff --git a/util/inteltool/gpio_names/cannonlake.h b/util/inteltool/gpio_names/cannonlake.h index 5d80694..305a1c3 100644 --- a/util/inteltool/gpio_names/cannonlake.h +++ b/util/inteltool/gpio_names/cannonlake.h @@ -399,21 +399,21 @@ };
static const struct gpio_group cannonlake_pch_h_group_aza = { - .display = "------- GPIO Grpoup AZA -------", + .display = "------- GPIO Group AZA -------", .pad_count = ARRAY_SIZE(cannonlake_pch_h_group_aza_names) / 1, .func_count = 1, .pad_names = cannonlake_pch_h_group_aza_names, };
static const struct gpio_group cannonlake_pch_h_group_vgpio_0 = { - .display = "------- GPIO Grpoup VGPIO_0 -------", + .display = "------- GPIO Group VGPIO_0 -------", .pad_count = ARRAY_SIZE(cannonlake_pch_h_group_vgpio_0_names) / 1, .func_count = 1, .pad_names = cannonlake_pch_h_group_vgpio_0_names, };
static const struct gpio_group cannonlake_pch_h_group_vgpio_1 = { - .display = "------- GPIO Grpoup VGPIO_1 -------", + .display = "------- GPIO Group VGPIO_1 -------", .pad_count = ARRAY_SIZE(cannonlake_pch_h_group_vgpio_1_names) / 1, .func_count = 1, .pad_names = cannonlake_pch_h_group_vgpio_1_names, @@ -427,7 +427,7 @@ };
static const struct gpio_group cannonlake_pch_h_group_i = { - .display = "-------GPIO Group GPP_I -------", + .display = "------- GPIO Group GPP_I -------", .pad_count = ARRAY_SIZE(cannonlake_pch_h_group_i_names) / 3, .func_count = 3, .pad_names = cannonlake_pch_h_group_i_names, diff --git a/util/inteltool/gpio_names/sunrise.h b/util/inteltool/gpio_names/sunrise.h index ff3d1dd..6a47556 100644 --- a/util/inteltool/gpio_names/sunrise.h +++ b/util/inteltool/gpio_names/sunrise.h @@ -391,7 +391,7 @@ };
static const struct gpio_group sunrise_lp_group_a = { - .display = "------- GPIO group GPP_A -------", + .display = "------- GPIO Group GPP_A -------", .pad_count = ARRAY_SIZE(sunrise_lp_group_a_names) / 4, .func_count = 4, .pad_names = sunrise_lp_group_a_names,