console: fix Kconfig uses
While upstreaming, some old (or downstream) names sneaked in. Change-Id: I148fd8f46bc88c38ce1f62efe5771555bd5dcc5c Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/9350 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
7a453ebed2
commit
94e4d81d07
|
@ -10,4 +10,4 @@ romstage-y += smbus.c
|
||||||
romstage-y += spi.c
|
romstage-y += spi.c
|
||||||
romstage-y += stack.c
|
romstage-y += stack.c
|
||||||
romstage-y += systemagent.c
|
romstage-y += systemagent.c
|
||||||
romstage-$(CONFIG_CONSOLE_SERIAL8250MEM) += uart.c
|
romstage-$(CONFIG_DRIVERS_UART_8250MEM) += uart.c
|
||||||
|
|
|
@ -36,7 +36,7 @@ bootblock-y += rk808.c
|
||||||
verstage-y += monotonic_timer.c
|
verstage-y += monotonic_timer.c
|
||||||
verstage-y += spi.c
|
verstage-y += spi.c
|
||||||
verstage-y += timer.c
|
verstage-y += timer.c
|
||||||
verstage-$(CONFIG_CONSOLE_SERIAL_UART) += uart.c
|
verstage-$(CONFIG_DRIVERS_UART) += uart.c
|
||||||
verstage-y += gpio.c
|
verstage-y += gpio.c
|
||||||
verstage-y += clock.c
|
verstage-y += clock.c
|
||||||
verstage-y += i2c.c
|
verstage-y += i2c.c
|
||||||
|
|
|
@ -31,7 +31,7 @@ static void bootblock_cpu_init(void)
|
||||||
{
|
{
|
||||||
rk3288_init_timer();
|
rk3288_init_timer();
|
||||||
|
|
||||||
if (IS_ENABLED(CONFIG_CONSOLE_SERIAL_UART)) {
|
if (IS_ENABLED(CONFIG_DRIVERS_UART)) {
|
||||||
switch (CONFIG_CONSOLE_SERIAL_UART_ADDRESS) {
|
switch (CONFIG_CONSOLE_SERIAL_UART_ADDRESS) {
|
||||||
case UART2_BASE:
|
case UART2_BASE:
|
||||||
writel(IOMUX_UART2, &rk3288_grf->iomux_uart2);
|
writel(IOMUX_UART2, &rk3288_grf->iomux_uart2);
|
||||||
|
|
Loading…
Reference in New Issue