diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-02-14 10:31:38 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-03-04 15:40:34 +0100 |
commit | 0567c91b22e36eb07e7c7b8a67cbf6b41778db30 (patch) | |
tree | 1d8ee38c3e001f8be09b677554c02addf36292e9 /src/console/Makefile.inc | |
parent | ab94bbf07221483ec52d072940a8b6206b69dc62 (diff) |
console: Use single driver entry for UARTs
UARTs now have unified prototypes and can use a single entry
in the list of drivers for ramstage.
Change-Id: I315daaf9a83cfa60f1a270146c729907a1d6d45b
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/5308
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/console/Makefile.inc')
-rw-r--r-- | src/console/Makefile.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/console/Makefile.inc b/src/console/Makefile.inc index f158670a34..df08e80444 100644 --- a/src/console/Makefile.inc +++ b/src/console/Makefile.inc @@ -17,8 +17,7 @@ bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += vtxprintf.c bootblock-y += console.c bootblock-y += die.c -ramstage-$(CONFIG_CONSOLE_SERIAL8250) += uart8250_console.c -ramstage-$(CONFIG_CONSOLE_SERIAL8250MEM) += uart8250mem_console.c +ramstage-$(CONFIG_CONSOLE_SERIAL) += uart_console.c ramstage-$(CONFIG_SPKMODEM) += spkmodem_console.c ramstage-$(CONFIG_CONSOLE_USB) += usbdebug_console.c ramstage-$(CONFIG_CONSOLE_NE2K) += ne2k_console.c |