Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / drivers / staging / fwserial / Kconfig
1 config FIREWIRE_SERIAL
2        tristate "TTY over Firewire"
3        depends on FIREWIRE && TTY
4        help
5           This enables TTY over IEEE 1394, providing high-speed serial
6           connectivity to cabled peers. This driver implements a
7           ad-hoc transport protocol and is currently limited to
8           Linux-to-Linux communication.
9
10           To compile this driver as a module, say M here:  the module will
11           be called firewire-serial.
12
13 if FIREWIRE_SERIAL
14
15 config FWTTY_MAX_TOTAL_PORTS
16        int "Maximum number of serial ports supported"
17        default "64"
18        help
19           Set this to the maximum number of serial ports you want the
20           firewire-serial driver to support.
21
22 config FWTTY_MAX_CARD_PORTS
23        int "Maximum number of serial ports supported per adapter"
24        range 0 FWTTY_MAX_TOTAL_PORTS
25        default "32"
26        help
27           Set this to the maximum number of serial ports each firewire
28           adapter supports. The actual number of serial ports registered
29           is set with the module parameter "ttys".
30
31 endif