Commit-ID: 3784592e0c0f224e399605cfa2d1570f79c0cc29 Gitweb: http://git.kernel.org/tip/3784592e0c0f224e399605cfa2d1570f79c0cc29 Author: David Rientjes <rientjes@xxxxxxxxxx> AuthorDate: Mon, 4 Feb 2013 10:20:10 -0800 Committer: Pekka Enberg <penberg@xxxxxxxxxx> CommitDate: Wed, 6 Feb 2013 20:26:08 +0200 config: fix make kvmconfig make kvmconfig selects CONFIG_SERIAL_8250 without selecting its dependencies causing some configs to fail: drivers/tty/serial/8250/8250.c:57:32: error: 'CONFIG_SERIAL_8250_RUNTIME_UARTS' undeclared here (not in a function) drivers/tty/serial/8250/8250.c:2712:47: error: 'CONFIG_SERIAL_8250_NR_UARTS' undeclared here (not in a function) drivers/tty/serial/8250/8250.c: In function 'serial8250_console_write': drivers/tty/serial/8250/8250.c:2843:10: error: 'struct uart_port' has no member named 'sysrq' drivers/tty/serial/8250/8250.c: In function 'early_serial_setup': drivers/tty/serial/8250/8250.c:2971:20: error: negative width in bit-field '<anonymous>' drivers/tty/serial/8250/8250.c: At top level: drivers/tty/serial/8250/8250.c:2712:30: warning: 'serial8250_ports' defined but not used [-Wunused-variable] Fix this by selecting CONFIG_TTY as well, which CONFIG_SERIAL_8250 requires. Signed-off-by: David Rientjes <rientjes@xxxxxxxxxx> Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxx> --- arch/x86/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index af3d760..95ef4d0 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -580,6 +580,7 @@ config KVMTOOL_TEST_ENABLE select NETWORK_FILESYSTEMS select INET select EXPERIMENTAL + select TTY select SERIAL_8250 select SERIAL_8250_CONSOLE select IP_PNP -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
![]() |