summaryrefslogtreecommitdiff
path: root/src/soc/imgtec/pistachio/Makefile.inc
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2015-03-30 13:08:18 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-03-30 20:41:22 +0200
commit146d05da93c3cfdb97023ead2cb673a8d5de6b4f (patch)
tree96705ba4f253569e88373f47a3ddad790f0fba5f /src/soc/imgtec/pistachio/Makefile.inc
parent4697d09f1a6625e3d38ec7d92a18b3853c359fa8 (diff)
downloadcoreboot-146d05da93c3cfdb97023ead2cb673a8d5de6b4f.tar.xz
imgtec/pistachio: Bring uart driver to modern standards
The console interface changed in upstream, and the driver didn't reflect that yet. This wasn't obvious because the driver wasn't compiled at all. Change-Id: Id18391e62e7ebd8f5fc929838ce27bf414e364f9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/9165 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/soc/imgtec/pistachio/Makefile.inc')
-rw-r--r--src/soc/imgtec/pistachio/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/imgtec/pistachio/Makefile.inc b/src/soc/imgtec/pistachio/Makefile.inc
index e695abd5bb..b91bb1b59a 100644
--- a/src/soc/imgtec/pistachio/Makefile.inc
+++ b/src/soc/imgtec/pistachio/Makefile.inc
@@ -24,7 +24,7 @@ bootblock-y += spi.c
romstage-y += spi.c
ramstage-y += spi.c
-ifeq ($(CONFIG_CONSOLE_SERIAL_UART),y)
+ifeq ($(CONFIG_DRIVERS_UART),y)
bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += uart.c
romstage-y += uart.c
ramstage-y += uart.c