Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: fwserial: Fix Kconfig indentation (seven spaces)

Adjust indentation from seven spaces to tab (+optional two spaces) as in
coding style with command like:
$ sed -e 's/^ /\t/' -i */Kconfig

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20191121132851.29072-1-krzk@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Krzysztof Kozlowski and committed by
Greg Kroah-Hartman
00d52fb7 96a8b291

+10 -10
+10 -10
drivers/staging/fwserial/Kconfig
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 2 config FIREWIRE_SERIAL 3 - tristate "TTY over Firewire" 4 - depends on FIREWIRE && TTY 5 - help 3 + tristate "TTY over Firewire" 4 + depends on FIREWIRE && TTY 5 + help 6 6 This enables TTY over IEEE 1394, providing high-speed serial 7 7 connectivity to cabled peers. This driver implements a 8 8 ad-hoc transport protocol and is currently limited to ··· 14 14 if FIREWIRE_SERIAL 15 15 16 16 config FWTTY_MAX_TOTAL_PORTS 17 - int "Maximum number of serial ports supported" 18 - default "64" 19 - help 17 + int "Maximum number of serial ports supported" 18 + default "64" 19 + help 20 20 Set this to the maximum number of serial ports you want the 21 21 firewire-serial driver to support. 22 22 23 23 config FWTTY_MAX_CARD_PORTS 24 - int "Maximum number of serial ports supported per adapter" 25 - range 0 FWTTY_MAX_TOTAL_PORTS 26 - default "32" 27 - help 24 + int "Maximum number of serial ports supported per adapter" 25 + range 0 FWTTY_MAX_TOTAL_PORTS 26 + default "32" 27 + help 28 28 Set this to the maximum number of serial ports each firewire 29 29 adapter supports. The actual number of serial ports registered 30 30 is set with the module parameter "ttys".