
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>
37 lines
953 B
Plaintext
37 lines
953 B
Plaintext
# SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
config ATH11K
|
|
tristate "Qualcomm Technologies 802.11ax chipset support"
|
|
depends on MAC80211 && HAS_DMA
|
|
depends on REMOTEPROC
|
|
depends on CRYPTO_MICHAEL_MIC
|
|
depends on ARCH_QCOM || COMPILE_TEST
|
|
select ATH_COMMON
|
|
select QCOM_QMI_HELPERS
|
|
help
|
|
This module adds support for Qualcomm Technologies 802.11ax family of
|
|
chipsets.
|
|
|
|
If you choose to build a module, it'll be called ath11k.
|
|
|
|
config ATH11K_DEBUG
|
|
bool "QCA ath11k debugging"
|
|
depends on ATH11K
|
|
help
|
|
Enables debug support
|
|
|
|
If unsure, say Y to make it easier to debug problems.
|
|
|
|
config ATH11K_DEBUGFS
|
|
bool "QCA ath11k debugfs support"
|
|
depends on ATH11K && DEBUG_FS && MAC80211_DEBUGFS
|
|
help
|
|
Enable ath11k debugfs support
|
|
|
|
If unsure, say Y to make it easier to debug problems.
|
|
|
|
config ATH11K_TRACING
|
|
bool "ath11k tracing support"
|
|
depends on ATH11K && EVENT_TRACING
|
|
help
|
|
Select this to use ath11k tracing infrastructure.
|