From 26436fb09a5176d46e9057e19f6e262052e72b05 Mon Sep 17 00:00:00 2001 From: Julien Viard de Galbert Date: Thu, 25 Jan 2018 10:29:42 +0100 Subject: soc/intel/denverton_ns: Rename HARCUVAR macros to DENVERTON Harcuvar is the board name, Denverton is the SoC. So macros in files under soc/ should be named after the SoC not the board. Change-Id: I1c7d5b93fba386b8e9bd86cf599508e642e21a75 Signed-off-by: Julien Viard de Galbert Reviewed-on: https://review.coreboot.org/23404 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Shine Liu Reviewed-by: Vanny E Reviewed-by: Martin Roth --- src/soc/intel/denverton_ns/bootblock/uart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/soc/intel/denverton_ns/bootblock/uart.c') diff --git a/src/soc/intel/denverton_ns/bootblock/uart.c b/src/soc/intel/denverton_ns/bootblock/uart.c index bad16de6b7..a81b389d99 100644 --- a/src/soc/intel/denverton_ns/bootblock/uart.c +++ b/src/soc/intel/denverton_ns/bootblock/uart.c @@ -186,12 +186,12 @@ void early_uart_init(void) register int i; /* Check: do we have enought elements to init. ? */ - BUILD_BUG_ON(HARCUVAR_UARTS_TO_INI > ELEM_OF_UART_TAB); + BUILD_BUG_ON(DENVERTON_UARTS_TO_INI > ELEM_OF_UART_TAB); /* HSUART(B0:D26:0-1) GPIO init. */ early_config_gpio(); - for (i = HARCUVAR_UARTS_TO_INI - 1; i >= 0; --i) { + for (i = DENVERTON_UARTS_TO_INI - 1; i >= 0; --i) { pci_early_hsuart_device_probe(0, CONFIG_HSUART_DEV, i, legacy_uart_ioadr_tab[i]); } -- cgit v1.2.3