From 595a40cfc92baecca9c58a7a95ae38ce72582f39 Mon Sep 17 00:00:00 2001 From: Marc Jones Date: Sun, 22 Feb 2015 23:07:48 -0700 Subject: tegra124: Clean up ARM UART driver build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CONFIG_CONSOLE_SERIAL_UART has been updated to CONFIG_DRIVER_UART. The UART may be used for more than serial console. Change-Id: Ife6e6861d210126b2b9ba5eee9ff72e8a447c47f Signed-off-by: Marc Jones Reviewed-on: http://review.coreboot.org/8516 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki --- src/soc/nvidia/tegra124/Makefile.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/soc/nvidia/tegra124/Makefile.inc') diff --git a/src/soc/nvidia/tegra124/Makefile.inc b/src/soc/nvidia/tegra124/Makefile.inc index 4b0ec9649f..8054ca21ad 100644 --- a/src/soc/nvidia/tegra124/Makefile.inc +++ b/src/soc/nvidia/tegra124/Makefile.inc @@ -17,7 +17,7 @@ bootblock-y += ../tegra/pinmux.c bootblock-y += ../tegra/apbmisc.c bootblock-y += timer.c ifeq ($(CONFIG_BOOTBLOCK_CONSOLE),y) -bootblock-$(CONFIG_CONSOLE_SERIAL) += uart.c +bootblock-$(CONFIG_DRIVERS_UART) += uart.c endif verstage-y += verstage.c @@ -26,7 +26,7 @@ verstage-y += dma.c verstage-y += monotonic_timer.c verstage-y += spi.c verstage-y += timer.c -verstage-$(CONFIG_CONSOLE_SERIAL_UART) += uart.c +verstage-$(CONFIG_DRIVERS_UART) += uart.c verstage-y += ../tegra/gpio.c verstage-y += ../tegra/pinmux.c @@ -46,7 +46,7 @@ romstage-y += ../tegra/i2c.c romstage-$(CONFIG_SOFTWARE_I2C) += ../tegra/software_i2c.c romstage-y += ../tegra/pinmux.c romstage-y += timer.c -romstage-$(CONFIG_CONSOLE_SERIAL) += uart.c +romstage-$(CONFIG_DRIVERS_UART) += uart.c ramstage-y += cbfs.c ramstage-y += cbmem.c @@ -67,7 +67,7 @@ ramstage-$(CONFIG_SOFTWARE_I2C) += ../tegra/software_i2c.c ramstage-y += ../tegra/pinmux.c ramstage-y += ../tegra/usb.c ramstage-y += timer.c -ramstage-$(CONFIG_CONSOLE_SERIAL) += uart.c +ramstage-$(CONFIG_DRIVERS_UART) += uart.c rmodules-y += monotonic_timer.c VBOOT_STUB_DEPS += $(obj)/soc/nvidia/tegra124/monotonic_timer.rmodules.o -- cgit v1.2.3