mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-25 09:29:55 +07: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>
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Micrel device configuration
|
|
#
|
|
|
|
config NET_VENDOR_MICREL
|
|
bool "Micrel devices"
|
|
default y
|
|
depends on (HAS_IOMEM && DMA_ENGINE) || SPI || PCI || HAS_IOMEM
|
|
help
|
|
If you have a network (Ethernet) card belonging to this class, say Y.
|
|
|
|
Note that the answer to this question doesn't directly affect the
|
|
kernel: saying N will just cause the configurator to skip all
|
|
the questions about Micrel devices. If you say Y, you will be asked
|
|
for your specific card in the following questions.
|
|
|
|
if NET_VENDOR_MICREL
|
|
|
|
config KS8842
|
|
tristate "Micrel KSZ8841/42 with generic bus interface"
|
|
depends on HAS_IOMEM && DMA_ENGINE
|
|
help
|
|
This platform driver is for KSZ8841(1-port) / KS8842(2-port)
|
|
ethernet switch chip (managed, VLAN, QoS) from Micrel or
|
|
Timberdale(FPGA).
|
|
|
|
config KS8851
|
|
tristate "Micrel KS8851 SPI"
|
|
depends on SPI
|
|
select MII
|
|
select CRC32
|
|
select EEPROM_93CX6
|
|
help
|
|
SPI driver for Micrel KS8851 SPI attached network chip.
|
|
|
|
config KS8851_MLL
|
|
tristate "Micrel KS8851 MLL"
|
|
depends on HAS_IOMEM
|
|
select MII
|
|
select CRC32
|
|
select EEPROM_93CX6
|
|
help
|
|
This platform driver is for Micrel KS8851 Address/data bus
|
|
multiplexed network chip.
|
|
|
|
config KSZ884X_PCI
|
|
tristate "Micrel KSZ8841/2 PCI"
|
|
depends on PCI
|
|
select MII
|
|
select CRC32
|
|
help
|
|
This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip.
|
|
|
|
To compile this driver as a module, choose M here. The module
|
|
will be called ksz884x.
|
|
|
|
endif # NET_VENDOR_MICREL
|