mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
a7f7f6248d
Since commit 84af7a6194
("checkpatch: kconfig: prefer 'help' over
'---help---'"), the number of '---help---' has been gradually
decreasing, but there are still more than 2400 instances.
This commit finishes the conversion. While I touched the lines,
I also fixed the indentation.
There are a variety of indentation styles found.
a) 4 spaces + '---help---'
b) 7 spaces + '---help---'
c) 8 spaces + '---help---'
d) 1 space + 1 tab + '---help---'
e) 1 tab + '---help---' (correct indentation)
f) 1 tab + 1 space + '---help---'
g) 1 tab + 2 spaces + '---help---'
In order to convert all of them to 1 tab + 'help', I ran the
following commend:
$ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
50 lines
1.5 KiB
Text
50 lines
1.5 KiB
Text
# SPDX-License-Identifier: GPL-2.0-only
|
|
config SCSI_QLA_FC
|
|
tristate "QLogic QLA2XXX Fibre Channel Support"
|
|
depends on PCI && SCSI
|
|
depends on SCSI_FC_ATTRS
|
|
depends on NVME_FC || !NVME_FC
|
|
select FW_LOADER
|
|
select BTREE
|
|
help
|
|
This qla2xxx driver supports all QLogic Fibre Channel
|
|
PCI and PCIe host adapters.
|
|
|
|
By default, firmware for the ISP parts will be loaded
|
|
via the Firmware Loader interface.
|
|
|
|
ISP Firmware Filename
|
|
---------- -----------------
|
|
21xx ql2100_fw.bin
|
|
22xx ql2200_fw.bin
|
|
2300, 2312, 6312 ql2300_fw.bin
|
|
2322, 6322 ql2322_fw.bin
|
|
24xx, 54xx ql2400_fw.bin
|
|
25xx ql2500_fw.bin
|
|
|
|
Upon request, the driver caches the firmware image until
|
|
the driver is unloaded.
|
|
|
|
Firmware images can be retrieved from:
|
|
|
|
http://ldriver.qlogic.com/firmware/
|
|
|
|
They are also included in the linux-firmware tree as well.
|
|
|
|
config TCM_QLA2XXX
|
|
tristate "TCM_QLA2XXX fabric module for QLogic 24xx+ series target mode HBAs"
|
|
depends on SCSI_QLA_FC && TARGET_CORE
|
|
depends on LIBFC
|
|
select BTREE
|
|
default n
|
|
help
|
|
Say Y here to enable the TCM_QLA2XXX fabric module for QLogic 24xx+ series target mode HBAs
|
|
|
|
if TCM_QLA2XXX
|
|
config TCM_QLA2XXX_DEBUG
|
|
bool "TCM_QLA2XXX fabric module DEBUG mode for QLogic 24xx+ series target mode HBAs"
|
|
default n
|
|
help
|
|
Say Y here to enable the TCM_QLA2XXX fabric module DEBUG for QLogic 24xx+ series target mode HBAs
|
|
This will include code to enable the SCSI command jammer
|
|
endif
|