From de91780c3089e8a46be8ee7a196acaefa6bcf115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=BBygowski?= Date: Wed, 18 May 2022 14:08:08 +0200 Subject: [PATCH] inteltool/gpio_names/tigerlake.h: Fix HVMOS pad count MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Żygowski Change-Id: I344fd2db9d53ad5e82240aaa2b766ac0d8a2045d Reviewed-on: https://review.coreboot.org/c/coreboot/+/64464 Reviewed-by: Maciej Pijanowski Tested-by: build bot (Jenkins) Reviewed-by: Michael Niewöhner --- util/inteltool/gpio_names/tigerlake.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/inteltool/gpio_names/tigerlake.h b/util/inteltool/gpio_names/tigerlake.h index 095eb45867..c1b1b8550f 100644 --- a/util/inteltool/gpio_names/tigerlake.h +++ b/util/inteltool/gpio_names/tigerlake.h @@ -187,7 +187,7 @@ const char *const tigerlake_pch_lp_group_hvmos_names[] = { const struct gpio_group tigerlake_pch_lp_group_hvmos = { .display = "------- GPIO Group HVMOS -------", - .pad_count = ARRAY_SIZE(tigerlake_pch_lp_group_hvmos_names), + .pad_count = ARRAY_SIZE(tigerlake_pch_lp_group_hvmos_names) / 2, .func_count = 2, .pad_names = tigerlake_pch_lp_group_hvmos_names, };