diff options
author | Benjamin Doron <benjamin.doron00@gmail.com> | 2020-07-15 04:13:54 +0000 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-07-26 21:48:48 +0000 |
commit | 552ce003a5051c3a3c49d2556072482c97773d03 (patch) | |
tree | 0024573e73d6283e8baf650a361bacffeaba637e /util/inteltool/gpio_names | |
parent | e9b0db388cdad6fb817487a35e89cce8348332b7 (diff) |
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>
Diffstat (limited to 'util/inteltool/gpio_names')
-rw-r--r-- | util/inteltool/gpio_names/cannonlake.h | 8 | ||||
-rw-r--r-- | util/inteltool/gpio_names/sunrise.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/util/inteltool/gpio_names/cannonlake.h b/util/inteltool/gpio_names/cannonlake.h index 5d806941f0..305a1c38c6 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_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, diff --git a/util/inteltool/gpio_names/sunrise.h b/util/inteltool/gpio_names/sunrise.h index ff3d1dd9d9..6a47556ca4 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_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, |