mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
bed35c6dfa
Add a serdev controller driver for tty ports. The controller is registered with serdev when tty ports are registered with the TTY core. As the TTY core is built-in only, this has the side effect of making serdev built-in as well. Signed-off-by: Rob Herring <robh@kernel.org> Reviewed-By: Sebastian Reichel <sre@kernel.org> Tested-By: Sebastian Reichel <sre@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17 lines
312 B
Plaintext
17 lines
312 B
Plaintext
#
|
|
# Serial bus device driver configuration
|
|
#
|
|
menuconfig SERIAL_DEV_BUS
|
|
tristate "Serial device bus"
|
|
help
|
|
Core support for devices connected via a serial port.
|
|
|
|
if SERIAL_DEV_BUS
|
|
|
|
config SERIAL_DEV_CTRL_TTYPORT
|
|
bool "Serial device TTY port controller"
|
|
depends on TTY
|
|
depends on SERIAL_DEV_BUS != m
|
|
|
|
endif
|