Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 #
0003 # Serial bus device driver configuration
0004 #
0005 menuconfig SERIAL_DEV_BUS
0006         tristate "Serial device bus"
0007         help
0008           Core support for devices connected via a serial port.
0009 
0010           Note that you typically also want to enable TTY port controller support.
0011 
0012 if SERIAL_DEV_BUS
0013 
0014 config SERIAL_DEV_CTRL_TTYPORT
0015         bool "Serial device TTY port controller"
0016         help
0017           Say Y here if you want to use the Serial device bus with common TTY
0018           drivers (e.g. serial drivers).
0019 
0020           If unsure, say Y.
0021         depends on TTY
0022         depends on SERIAL_DEV_BUS != m
0023         default y
0024 
0025 endif