diff options
author | Marc Jones <marc.jones@se-eng.com> | 2015-02-22 23:07:48 -0700 |
---|---|---|
committer | Marc Jones <marc.jones@se-eng.com> | 2015-02-25 19:48:51 +0100 |
commit | 595a40cfc92baecca9c58a7a95ae38ce72582f39 (patch) | |
tree | f6ea6e525ac79a9b47063054b1a6e6a6e33f683a /src/soc/nvidia/tegra124 | |
parent | d8ea0ba5a8e338a07e1b8736d37b952ce531018d (diff) |
tegra124: Clean up ARM UART driver build
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 <marc.jones@se-eng.com>
Reviewed-on: http://review.coreboot.org/8516
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/soc/nvidia/tegra124')
-rw-r--r-- | src/soc/nvidia/tegra124/Makefile.inc | 8 |
1 files changed, 4 insertions, 4 deletions
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 |