diff options
author | Joe Millenbach <jmillenbach@gmail.com> | 2013-02-05 17:58:34 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-06 11:10:49 -0800 |
commit | 238d9f6e551d87bd6fbcfa3069592dfb407937fb (patch) | |
tree | 710c95f90334e502b42b8b4e6c4b58530777ca78 /drivers/input/serio | |
parent | a8cd98586b1f9e3b5dd7e141bcfe8f078fbb39ed (diff) | |
download | talos-obmc-linux-238d9f6e551d87bd6fbcfa3069592dfb407937fb.tar.gz talos-obmc-linux-238d9f6e551d87bd6fbcfa3069592dfb407937fb.zip |
input: drop unnecessary dependencies on TTY
Backing out changes made in earlier TTY removal patch. Switched
to only one dependency in SERPORT on TTY instead of many incorrect
dependencies.
Signed-off-by: Joe Millenbach <jmillenbach@gmail.com>
Reported-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/input/serio')
-rw-r--r-- | drivers/input/serio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/serio/Kconfig b/drivers/input/serio/Kconfig index 81ee7551148e..fe4e4953d5f5 100644 --- a/drivers/input/serio/Kconfig +++ b/drivers/input/serio/Kconfig @@ -4,7 +4,6 @@ config SERIO tristate "Serial I/O support" if EXPERT || !X86 default y - depends on TTY help Say Yes here if you have any input device that uses serial I/O to communicate with the system. This includes the @@ -37,6 +36,7 @@ config SERIO_I8042 config SERIO_SERPORT tristate "Serial port line discipline" default y + depends on TTY help Say Y here if you plan to use an input device (mouse, joystick, tablet, 6dof) that communicates over the RS232 serial (COM) port. |