summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/jasperlake/uart.c
diff options
context:
space:
mode:
authorMichael Niewöhner <foss@mniewoehner.de>2021-01-11 13:21:19 +0100
committerMichael Niewöhner <foss@mniewoehner.de>2021-01-12 23:38:32 +0000
commitf3faddc4868ddec7806cc9413e33225d87a157a4 (patch)
tree390e92cb83357d424fc5fc246bc7021e8bf3943c /src/soc/intel/jasperlake/uart.c
parent2bec7f0a1183102e142e6c4bdabdbc20252164fd (diff)
downloadcoreboot-f3faddc4868ddec7806cc9413e33225d87a157a4.tar.gz
coreboot-f3faddc4868ddec7806cc9413e33225d87a157a4.tar.bz2
coreboot-f3faddc4868ddec7806cc9413e33225d87a157a4.zip
soc/intel: rename uart_max_index
The name `..._index` is confusing since the maximum index of an array is not `ARRAY_SIZE(array)` but `ARRAY_SIZE(array) - 1`. Rename `uart_max_index` to `uart_ctrlr_config_size` to make the name match the variable´s value. Change-Id: I7409c9dc040c3c6ad718abc96f268c187d50d79c Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49305 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/jasperlake/uart.c')
-rw-r--r--src/soc/intel/jasperlake/uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/jasperlake/uart.c b/src/soc/intel/jasperlake/uart.c
index c0d0e49e5470..cc44a61bb579 100644
--- a/src/soc/intel/jasperlake/uart.c
+++ b/src/soc/intel/jasperlake/uart.c
@@ -38,4 +38,4 @@ const struct uart_controller_config uart_ctrlr_config[] = {
}
};
-const int uart_max_index = ARRAY_SIZE(uart_ctrlr_config);
+const int uart_ctrlr_config_size = ARRAY_SIZE(uart_ctrlr_config);