treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / tty / serdev / Kconfig
blob46ae732bfc68ab8dfec9ab2becab76c2f65206ad
1 # SPDX-License-Identifier: GPL-2.0
3 # Serial bus device driver configuration
5 menuconfig SERIAL_DEV_BUS
6         tristate "Serial device bus"
7         help
8           Core support for devices connected via a serial port.
10           Note that you typically also want to enable TTY port controller support.
12 if SERIAL_DEV_BUS
14 config SERIAL_DEV_CTRL_TTYPORT
15         bool "Serial device TTY port controller"
16         help
17           Say Y here if you want to use the Serial device bus with common TTY
18           drivers (e.g. serial drivers).
20           If unsure, say Y.
21         depends on TTY
22         depends on SERIAL_DEV_BUS != m
23         default y
25 endif