summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/serial.h
diff options
context:
space:
mode:
authorValentin Rothberg2015-04-12 17:37:24 +0200
committerGreg Kroah-Hartman2015-05-06 22:27:00 +0200
commit507224aa88fc2c11f252705ad286bca155e0df02 (patch)
tree5f1f857194542fc23046626cab0fb376e1681bdb /arch/x86/include/asm/serial.h
parentserial: core: Fix unused variable warnings from uart_console() (diff)
downloadkernel-qcow2-linux-507224aa88fc2c11f252705ad286bca155e0df02.tar.gz
kernel-qcow2-linux-507224aa88fc2c11f252705ad286bca155e0df02.tar.xz
kernel-qcow2-linux-507224aa88fc2c11f252705ad286bca155e0df02.zip
serial: 8250: remove Kconfig indirection
Remove CONFIG_SERIAL_DETECT_IRQ and CONFIG_SERIAL_MANY_PORTS, and substitute all references to the proper 8250 Kconfig options. Now, the actual Kconfig dependencies are not hidden when reading the code and static analyzers are less confused. Signed-off-by: Valentin Rothberg <valentinrothberg@gmail.com> Reviewed-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86/include/asm/serial.h')
-rw-r--r--arch/x86/include/asm/serial.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/serial.h b/arch/x86/include/asm/serial.h
index 8378b8c9109c..bb658211edad 100644
--- a/arch/x86/include/asm/serial.h
+++ b/arch/x86/include/asm/serial.h
@@ -11,7 +11,7 @@
#define BASE_BAUD (1843200/16)
/* Standard COM flags (except for COM4, because of the 8514 problem) */
-#ifdef CONFIG_SERIAL_DETECT_IRQ
+#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
# define STD_COMX_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_AUTO_IRQ)
# define STD_COM4_FLAGS (UPF_BOOT_AUTOCONF | 0 | UPF_AUTO_IRQ)
#else