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

drivers: net: Fix Kconfig indentation, continued

Adjust indentation from spaces to tab (+optional two spaces) as in
coding style. This fixes various indentation mixups (seven spaces,
tab+one space, etc).

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Krzysztof Kozlowski and committed by
David S. Miller
5421cf84 1841b982

+146 -146
+32 -32
drivers/net/Kconfig
··· 153 153 select NET_L3_MASTER_DEV 154 154 155 155 config IPVLAN 156 - tristate "IP-VLAN support" 157 - depends on INET 158 - depends on IPV6 || !IPV6 159 - ---help--- 160 - This allows one to create virtual devices off of a main interface 161 - and packets will be delivered based on the dest L3 (IPv6/IPv4 addr) 162 - on packets. All interfaces (including the main interface) share L2 163 - making it transparent to the connected L2 switch. 156 + tristate "IP-VLAN support" 157 + depends on INET 158 + depends on IPV6 || !IPV6 159 + ---help--- 160 + This allows one to create virtual devices off of a main interface 161 + and packets will be delivered based on the dest L3 (IPv6/IPv4 addr) 162 + on packets. All interfaces (including the main interface) share L2 163 + making it transparent to the connected L2 switch. 164 164 165 - Ipvlan devices can be added using the "ip" command from the 166 - iproute2 package starting with the iproute2-3.19 release: 165 + Ipvlan devices can be added using the "ip" command from the 166 + iproute2 package starting with the iproute2-3.19 release: 167 167 168 - "ip link add link <main-dev> [ NAME ] type ipvlan" 168 + "ip link add link <main-dev> [ NAME ] type ipvlan" 169 169 170 - To compile this driver as a module, choose M here: the module 171 - will be called ipvlan. 170 + To compile this driver as a module, choose M here: the module 171 + will be called ipvlan. 172 172 173 173 config IPVTAP 174 174 tristate "IP-VLAN based tap driver" ··· 185 185 will be called ipvtap. 186 186 187 187 config VXLAN 188 - tristate "Virtual eXtensible Local Area Network (VXLAN)" 189 - depends on INET 190 - select NET_UDP_TUNNEL 191 - select GRO_CELLS 192 - ---help--- 188 + tristate "Virtual eXtensible Local Area Network (VXLAN)" 189 + depends on INET 190 + select NET_UDP_TUNNEL 191 + select GRO_CELLS 192 + ---help--- 193 193 This allows one to create vxlan virtual interfaces that provide 194 194 Layer 2 Networks over Layer 3 Networks. VXLAN is often used 195 195 to tunnel virtual network infrastructure in virtualized environments. ··· 200 200 will be called vxlan. 201 201 202 202 config GENEVE 203 - tristate "Generic Network Virtualization Encapsulation" 204 - depends on INET 205 - depends on IPV6 || !IPV6 206 - select NET_UDP_TUNNEL 207 - select GRO_CELLS 208 - ---help--- 203 + tristate "Generic Network Virtualization Encapsulation" 204 + depends on INET 205 + depends on IPV6 || !IPV6 206 + select NET_UDP_TUNNEL 207 + select GRO_CELLS 208 + ---help--- 209 209 This allows one to create geneve virtual interfaces that provide 210 210 Layer 2 Networks over Layer 3 Networks. GENEVE is often used 211 211 to tunnel virtual network infrastructure in virtualized environments. ··· 244 244 config NETCONSOLE 245 245 tristate "Network console logging support" 246 246 ---help--- 247 - If you want to log kernel messages over the network, enable this. 248 - See <file:Documentation/networking/netconsole.txt> for details. 247 + If you want to log kernel messages over the network, enable this. 248 + See <file:Documentation/networking/netconsole.txt> for details. 249 249 250 250 config NETCONSOLE_DYNAMIC 251 251 bool "Dynamic reconfiguration of logging targets" ··· 362 362 support enables VRF devices. 363 363 364 364 config VSOCKMON 365 - tristate "Virtual vsock monitoring device" 366 - depends on VHOST_VSOCK 367 - ---help--- 368 - This option enables a monitoring net device for vsock sockets. It is 369 - mostly intended for developers or support to debug vsock issues. If 370 - unsure, say N. 365 + tristate "Virtual vsock monitoring device" 366 + depends on VHOST_VSOCK 367 + ---help--- 368 + This option enables a monitoring net device for vsock sockets. It is 369 + mostly intended for developers or support to debug vsock issues. If 370 + unsure, say N. 371 371 372 372 endif # NET_CORE 373 373
+18 -18
drivers/net/caif/Kconfig
··· 16 16 depends on CAIF && TTY 17 17 default n 18 18 ---help--- 19 - The CAIF TTY transport driver is a Line Discipline (ldisc) 20 - identified as N_CAIF. When this ldisc is opened from user space 21 - it will redirect the TTY's traffic into the CAIF stack. 19 + The CAIF TTY transport driver is a Line Discipline (ldisc) 20 + identified as N_CAIF. When this ldisc is opened from user space 21 + it will redirect the TTY's traffic into the CAIF stack. 22 22 23 23 config CAIF_SPI_SLAVE 24 24 tristate "CAIF SPI transport driver for slave interface" 25 25 depends on CAIF && HAS_DMA 26 26 default n 27 27 ---help--- 28 - The CAIF Link layer SPI Protocol driver for Slave SPI interface. 29 - This driver implements a platform driver to accommodate for a 30 - platform specific SPI device. A sample CAIF SPI Platform device is 31 - provided in <file:Documentation/networking/caif/spi_porting.txt>. 28 + The CAIF Link layer SPI Protocol driver for Slave SPI interface. 29 + This driver implements a platform driver to accommodate for a 30 + platform specific SPI device. A sample CAIF SPI Platform device is 31 + provided in <file:Documentation/networking/caif/spi_porting.txt>. 32 32 33 33 config CAIF_SPI_SYNC 34 34 bool "Next command and length in start of frame" 35 35 depends on CAIF_SPI_SLAVE 36 36 default n 37 37 ---help--- 38 - Putting the next command and length in the start of the frame can 39 - help to synchronize to the next transfer in case of over or under-runs. 40 - This option also needs to be enabled on the modem. 38 + Putting the next command and length in the start of the frame can 39 + help to synchronize to the next transfer in case of over or under-runs. 40 + This option also needs to be enabled on the modem. 41 41 42 42 config CAIF_HSI 43 - tristate "CAIF HSI transport driver" 44 - depends on CAIF 45 - default n 46 - ---help--- 47 - The CAIF low level driver for CAIF over HSI. 48 - Be aware that if you enable this then you also need to 49 - enable a low-level HSI driver. 43 + tristate "CAIF HSI transport driver" 44 + depends on CAIF 45 + default n 46 + ---help--- 47 + The CAIF low level driver for CAIF over HSI. 48 + Be aware that if you enable this then you also need to 49 + enable a low-level HSI driver. 50 50 51 51 config CAIF_VIRTIO 52 52 tristate "CAIF virtio transport driver" ··· 56 56 select GENERIC_ALLOCATOR 57 57 default n 58 58 ---help--- 59 - The CAIF driver for CAIF over Virtio. 59 + The CAIF driver for CAIF over Virtio. 60 60 61 61 if CAIF_VIRTIO 62 62 source "drivers/vhost/Kconfig.vringh"
+4 -4
drivers/net/ethernet/freescale/fs_enet/Kconfig
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 config FS_ENET 3 - tristate "Freescale Ethernet Driver" 4 - depends on NET_VENDOR_FREESCALE && (CPM1 || CPM2 || PPC_MPC512x) 5 - select MII 6 - select PHYLIB 3 + tristate "Freescale Ethernet Driver" 4 + depends on NET_VENDOR_FREESCALE && (CPM1 || CPM2 || PPC_MPC512x) 5 + select MII 6 + select PHYLIB 7 7 8 8 config FS_ENET_MPC5121_FEC 9 9 def_bool y if (FS_ENET && PPC_MPC512x)
+6 -6
drivers/net/ieee802154/Kconfig
··· 74 74 The module will be called 'atusb'. 75 75 76 76 config IEEE802154_ADF7242 77 - tristate "ADF7242 transceiver driver" 78 - depends on IEEE802154_DRIVERS && MAC802154 79 - depends on SPI 77 + tristate "ADF7242 transceiver driver" 78 + depends on IEEE802154_DRIVERS && MAC802154 79 + depends on SPI 80 80 ---help--- 81 81 Say Y here to enable the ADF7242 SPI 802.15.4 wireless 82 82 controller. ··· 107 107 management entities. 108 108 109 109 config IEEE802154_MCR20A 110 - tristate "MCR20A transceiver driver" 111 - depends on IEEE802154_DRIVERS && MAC802154 112 - depends on SPI 110 + tristate "MCR20A transceiver driver" 111 + depends on IEEE802154_DRIVERS && MAC802154 112 + depends on SPI 113 113 ---help--- 114 114 Say Y here to enable the MCR20A SPI 802.15.4 wireless 115 115 controller.
+6 -6
drivers/net/wireless/ath/Kconfig
··· 30 30 Right now only ath9k makes use of this. 31 31 32 32 config ATH_TRACEPOINTS 33 - bool "Atheros wireless tracing" 34 - depends on ATH_DEBUG 35 - depends on EVENT_TRACING 36 - ---help--- 37 - This option enables tracepoints for atheros wireless drivers. 38 - Currently, ath9k makes use of this facility. 33 + bool "Atheros wireless tracing" 34 + depends on ATH_DEBUG 35 + depends on EVENT_TRACING 36 + ---help--- 37 + This option enables tracepoints for atheros wireless drivers. 38 + Currently, ath9k makes use of this facility. 39 39 40 40 config ATH_REG_DYNAMIC_USER_REG_HINTS 41 41 bool "Atheros dynamic user regulatory hints"
+7 -7
drivers/net/wireless/ath/ar5523/Kconfig
··· 1 1 # SPDX-License-Identifier: ISC 2 2 config AR5523 3 - tristate "Atheros AR5523 wireless driver support" 4 - depends on MAC80211 && USB 5 - select ATH_COMMON 6 - select FW_LOADER 7 - ---help--- 8 - This module add support for AR5523 based USB dongles such as D-Link 9 - DWL-G132, Netgear WPN111 and many more. 3 + tristate "Atheros AR5523 wireless driver support" 4 + depends on MAC80211 && USB 5 + select ATH_COMMON 6 + select FW_LOADER 7 + ---help--- 8 + This module add support for AR5523 based USB dongles such as D-Link 9 + DWL-G132, Netgear WPN111 and many more.
+27 -27
drivers/net/wireless/ath/ath9k/Kconfig
··· 144 144 a platform that can toggle the RF-Kill GPIO. 145 145 146 146 config ATH9K_CHANNEL_CONTEXT 147 - bool "Channel Context support" 148 - depends on ATH9K 149 - default n 150 - ---help--- 151 - This option enables channel context support in ath9k, which is needed 152 - for multi-channel concurrency. Enable this if P2P PowerSave support 153 - is required. 147 + bool "Channel Context support" 148 + depends on ATH9K 149 + default n 150 + ---help--- 151 + This option enables channel context support in ath9k, which is needed 152 + for multi-channel concurrency. Enable this if P2P PowerSave support 153 + is required. 154 154 155 155 config ATH9K_PCOEM 156 156 bool "Atheros ath9k support for PC OEM cards" if EXPERT ··· 162 162 depends on ATH9K_PCI 163 163 default n 164 164 help 165 - This separate driver provides a loader in order to support the 166 - AR500X to AR92XX-generation of ath9k PCI(e) WiFi chips, which have 167 - their initialization data (which contains the real PCI Device ID 168 - that ath9k will need) stored together with the calibration data out 169 - of reach for the ath9k chip. 165 + This separate driver provides a loader in order to support the 166 + AR500X to AR92XX-generation of ath9k PCI(e) WiFi chips, which have 167 + their initialization data (which contains the real PCI Device ID 168 + that ath9k will need) stored together with the calibration data out 169 + of reach for the ath9k chip. 170 170 171 - These devices are usually various network appliances, routers or 172 - access Points and such. 171 + These devices are usually various network appliances, routers or 172 + access Points and such. 173 173 174 - If unsure say N. 174 + If unsure say N. 175 175 176 176 config ATH9K_HTC 177 - tristate "Atheros HTC based wireless cards support" 178 - depends on USB && MAC80211 179 - select ATH9K_HW 180 - select MAC80211_LEDS 181 - select LEDS_CLASS 182 - select NEW_LEDS 183 - select ATH9K_COMMON 184 - ---help--- 185 - Support for Atheros HTC based cards. 186 - Chipsets supported: AR9271 177 + tristate "Atheros HTC based wireless cards support" 178 + depends on USB && MAC80211 179 + select ATH9K_HW 180 + select MAC80211_LEDS 181 + select LEDS_CLASS 182 + select NEW_LEDS 183 + select ATH9K_COMMON 184 + ---help--- 185 + Support for Atheros HTC based cards. 186 + Chipsets supported: AR9271 187 187 188 - For more information: http://wireless.kernel.org/en/users/Drivers/ath9k_htc 188 + For more information: http://wireless.kernel.org/en/users/Drivers/ath9k_htc 189 189 190 - The built module will be ath9k_htc. 190 + The built module will be ath9k_htc. 191 191 192 192 config ATH9K_HTC_DEBUGFS 193 193 bool "Atheros ath9k_htc debugging"
+20 -20
drivers/net/wireless/atmel/Kconfig
··· 13 13 if WLAN_VENDOR_ATMEL 14 14 15 15 config ATMEL 16 - tristate "Atmel at76c50x chipset 802.11b support" 17 - depends on CFG80211 && (PCI || PCMCIA) 18 - select WIRELESS_EXT 19 - select WEXT_PRIV 20 - select FW_LOADER 21 - select CRC32 22 - ---help--- 23 - A driver 802.11b wireless cards based on the Atmel fast-vnet 24 - chips. This driver supports standard Linux wireless extensions. 16 + tristate "Atmel at76c50x chipset 802.11b support" 17 + depends on CFG80211 && (PCI || PCMCIA) 18 + select WIRELESS_EXT 19 + select WEXT_PRIV 20 + select FW_LOADER 21 + select CRC32 22 + ---help--- 23 + A driver 802.11b wireless cards based on the Atmel fast-vnet 24 + chips. This driver supports standard Linux wireless extensions. 25 25 26 - Many cards based on this chipset do not have flash memory 27 - and need their firmware loaded at start-up. If yours is 28 - one of these, you will need to provide a firmware image 29 - to be loaded into the card by the driver. The Atmel 30 - firmware package can be downloaded from 31 - <http://www.thekelleys.org.uk/atmel> 26 + Many cards based on this chipset do not have flash memory 27 + and need their firmware loaded at start-up. If yours is 28 + one of these, you will need to provide a firmware image 29 + to be loaded into the card by the driver. The Atmel 30 + firmware package can be downloaded from 31 + <http://www.thekelleys.org.uk/atmel> 32 32 33 33 config PCI_ATMEL 34 - tristate "Atmel at76c506 PCI cards" 35 - depends on ATMEL && PCI 36 - ---help--- 37 - Enable support for PCI and mini-PCI cards containing the 38 - Atmel at76c506 chip. 34 + tristate "Atmel at76c506 PCI cards" 35 + depends on ATMEL && PCI 36 + ---help--- 37 + Enable support for PCI and mini-PCI cards containing the 38 + Atmel at76c506 chip. 39 39 40 40 config PCMCIA_ATMEL 41 41 tristate "Atmel at76c502/at76c504 PCMCIA cards"
+22 -22
drivers/net/wireless/ralink/rt2x00/Kconfig
··· 95 95 96 96 97 97 config RT2800PCI_RT53XX 98 - bool "rt2800pci - Include support for rt53xx devices (EXPERIMENTAL)" 99 - default y 100 - ---help--- 101 - This adds support for rt53xx wireless chipset family to the 102 - rt2800pci driver. 103 - Supported chips: RT5390 98 + bool "rt2800pci - Include support for rt53xx devices (EXPERIMENTAL)" 99 + default y 100 + ---help--- 101 + This adds support for rt53xx wireless chipset family to the 102 + rt2800pci driver. 103 + Supported chips: RT5390 104 104 105 105 config RT2800PCI_RT3290 106 - bool "rt2800pci - Include support for rt3290 devices (EXPERIMENTAL)" 107 - default y 108 - ---help--- 109 - This adds support for rt3290 wireless chipset family to the 110 - rt2800pci driver. 111 - Supported chips: RT3290 106 + bool "rt2800pci - Include support for rt3290 devices (EXPERIMENTAL)" 107 + default y 108 + ---help--- 109 + This adds support for rt3290 wireless chipset family to the 110 + rt2800pci driver. 111 + Supported chips: RT3290 112 112 endif 113 113 114 114 config RT2500USB ··· 174 174 in the rt2800usb driver. 175 175 176 176 config RT2800USB_RT53XX 177 - bool "rt2800usb - Include support for rt53xx devices (EXPERIMENTAL)" 178 - ---help--- 179 - This adds support for rt53xx wireless chipset family to the 180 - rt2800usb driver. 181 - Supported chips: RT5370 177 + bool "rt2800usb - Include support for rt53xx devices (EXPERIMENTAL)" 178 + ---help--- 179 + This adds support for rt53xx wireless chipset family to the 180 + rt2800usb driver. 181 + Supported chips: RT5370 182 182 183 183 config RT2800USB_RT55XX 184 - bool "rt2800usb - Include support for rt55xx devices (EXPERIMENTAL)" 185 - ---help--- 186 - This adds support for rt55xx wireless chipset family to the 187 - rt2800usb driver. 188 - Supported chips: RT5572 184 + bool "rt2800usb - Include support for rt55xx devices (EXPERIMENTAL)" 185 + ---help--- 186 + This adds support for rt55xx wireless chipset family to the 187 + rt2800usb driver. 188 + Supported chips: RT5572 189 189 190 190 config RT2800USB_UNKNOWN 191 191 bool "rt2800usb - Include support for unknown (USB) devices"
+4 -4
drivers/net/wireless/ti/wl12xx/Kconfig
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 config WL12XX 3 - tristate "TI wl12xx support" 3 + tristate "TI wl12xx support" 4 4 depends on MAC80211 5 - select WLCORE 6 - ---help--- 5 + select WLCORE 6 + ---help--- 7 7 This module adds support for wireless adapters based on TI wl1271, 8 8 wl1273, wl1281 and wl1283 chipsets. This module does *not* include 9 9 support for wl1251. For wl1251 support, use the separate homonymous 10 - driver instead. 10 + driver instead.