summaryrefslogtreecommitdiff
path: root/src/soc/intel/denverton_ns/bootblock
diff options
context:
space:
mode:
authorJulien Viard de Galbert <jviarddegalbert@online.net>2018-01-25 10:29:42 +0100
committerMartin Roth <martinroth@google.com>2018-01-28 23:20:34 +0000
commit26436fb09a5176d46e9057e19f6e262052e72b05 (patch)
tree21f6bc06f12faa365f39e931056352acf4a294fb /src/soc/intel/denverton_ns/bootblock
parent22f54c5a81bf387edcd7ea792bc1717c554054c6 (diff)
downloadcoreboot-26436fb09a5176d46e9057e19f6e262052e72b05.tar.xz
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 <jviarddegalbert@online.net> Reviewed-on: https://review.coreboot.org/23404 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Shine Liu <shine.liu@intel.com> Reviewed-by: Vanny E <vanessa.f.eusebio@intel.com> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/intel/denverton_ns/bootblock')
-rw-r--r--src/soc/intel/denverton_ns/bootblock/uart.c4
1 files changed, 2 insertions, 2 deletions
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]);
}