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>
This commit is contained in:
parent
e9b0db388c
commit
552ce003a5
|
@ -399,21 +399,21 @@ static const struct gpio_group cannonlake_pch_h_group_g = {
|
|||
};
|
||||
|
||||
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_h = {
|
|||
};
|
||||
|
||||
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,
|
||||
|
|
|
@ -391,7 +391,7 @@ static const struct gpio_group sunrise_group_a = {
|
|||
};
|
||||
|
||||
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,
|
||||
|
|
Loading…
Reference in New Issue