Commit 68362e08 authored by Paul Mundt's avatar Paul Mundt

serial: sh-sci: kgdb console build fixes.

The kgdb console code requires uart_set_options() and friends, which
are only provided by the serial core when console support is enabled.
These were sitting under CONFIG_SH_KGDB and resulted in a link error
when console support wasn't enabled, work that by rolling the console
routines under CONFIG_SH_KGDB_CONSOLE, which they should have been
all along.
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent c9eaaa97
...@@ -1309,7 +1309,7 @@ static int __init sci_console_init(void) ...@@ -1309,7 +1309,7 @@ static int __init sci_console_init(void)
console_initcall(sci_console_init); console_initcall(sci_console_init);
#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */ #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
#ifdef CONFIG_SH_KGDB #ifdef CONFIG_SH_KGDB_CONSOLE
/* /*
* FIXME: Most of this can go away.. at the moment, we rely on * FIXME: Most of this can go away.. at the moment, we rely on
* arch/sh/kernel/setup.c to do the command line parsing for kgdb, though * arch/sh/kernel/setup.c to do the command line parsing for kgdb, though
...@@ -1367,9 +1367,7 @@ int __init kgdb_console_setup(struct console *co, char *options) ...@@ -1367,9 +1367,7 @@ int __init kgdb_console_setup(struct console *co, char *options)
return uart_set_options(port, co, baud, parity, bits, flow); return uart_set_options(port, co, baud, parity, bits, flow);
} }
#endif /* CONFIG_SH_KGDB */
#ifdef CONFIG_SH_KGDB_CONSOLE
static struct console kgdb_console = { static struct console kgdb_console = {
.name = "ttySC", .name = "ttySC",
.device = uart_console_device, .device = uart_console_device,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment