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

char: Fix Kconfig indentation, continued

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/20191121132842.28942-1-krzk@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Krzysztof Kozlowski and committed by
Greg Kroah-Hartman
599ea01c ab64ec1d

+58 -58
+9 -9
drivers/char/hw_random/Kconfig
··· 373 373 If unsure, say Y. 374 374 375 375 config HW_RANDOM_CAVIUM 376 - tristate "Cavium ThunderX Random Number Generator support" 377 - depends on HW_RANDOM && PCI && (ARM64 || (COMPILE_TEST && 64BIT)) 378 - default HW_RANDOM 379 - ---help--- 380 - This driver provides kernel-side support for the Random Number 381 - Generator hardware found on Cavium SoCs. 376 + tristate "Cavium ThunderX Random Number Generator support" 377 + depends on HW_RANDOM && PCI && (ARM64 || (COMPILE_TEST && 64BIT)) 378 + default HW_RANDOM 379 + ---help--- 380 + This driver provides kernel-side support for the Random Number 381 + Generator hardware found on Cavium SoCs. 382 382 383 - To compile this driver as a module, choose M here: the 384 - module will be called cavium_rng. 383 + To compile this driver as a module, choose M here: the 384 + module will be called cavium_rng. 385 385 386 - If unsure, say Y. 386 + If unsure, say Y. 387 387 388 388 config HW_RANDOM_MTK 389 389 tristate "Mediatek Random Number Generator support"
+49 -49
drivers/char/ipmi/Kconfig
··· 4 4 # 5 5 6 6 menuconfig IPMI_HANDLER 7 - tristate 'IPMI top-level message handler' 8 - depends on HAS_IOMEM 9 - select IPMI_DMI_DECODE if DMI 10 - help 11 - This enables the central IPMI message handler, required for IPMI 12 - to work. 7 + tristate 'IPMI top-level message handler' 8 + depends on HAS_IOMEM 9 + select IPMI_DMI_DECODE if DMI 10 + help 11 + This enables the central IPMI message handler, required for IPMI 12 + to work. 13 13 14 - IPMI is a standard for managing sensors (temperature, 15 - voltage, etc.) in a system. 14 + IPMI is a standard for managing sensors (temperature, 15 + voltage, etc.) in a system. 16 16 17 - See <file:Documentation/IPMI.txt> for more details on the driver. 17 + See <file:Documentation/IPMI.txt> for more details on the driver. 18 18 19 - If unsure, say N. 19 + If unsure, say N. 20 20 21 21 config IPMI_DMI_DECODE 22 - select IPMI_PLAT_DATA 23 - bool 22 + select IPMI_PLAT_DATA 23 + bool 24 24 25 25 config IPMI_PLAT_DATA 26 - bool 26 + bool 27 27 28 28 if IPMI_HANDLER 29 29 30 30 config IPMI_PANIC_EVENT 31 - bool 'Generate a panic event to all BMCs on a panic' 32 - help 33 - When a panic occurs, this will cause the IPMI message handler to, 34 - by default, generate an IPMI event describing the panic to each 35 - interface registered with the message handler. This is always 36 - available, the module parameter for ipmi_msghandler named 37 - panic_op can be set to "event" to chose this value, this config 38 - simply causes the default value to be set to "event". 31 + bool 'Generate a panic event to all BMCs on a panic' 32 + help 33 + When a panic occurs, this will cause the IPMI message handler to, 34 + by default, generate an IPMI event describing the panic to each 35 + interface registered with the message handler. This is always 36 + available, the module parameter for ipmi_msghandler named 37 + panic_op can be set to "event" to chose this value, this config 38 + simply causes the default value to be set to "event". 39 39 40 40 config IPMI_PANIC_STRING 41 41 bool 'Generate OEM events containing the panic string' ··· 54 54 causes the default value to be set to "string". 55 55 56 56 config IPMI_DEVICE_INTERFACE 57 - tristate 'Device interface for IPMI' 58 - help 59 - This provides an IOCTL interface to the IPMI message handler so 60 - userland processes may use IPMI. It supports poll() and select(). 57 + tristate 'Device interface for IPMI' 58 + help 59 + This provides an IOCTL interface to the IPMI message handler so 60 + userland processes may use IPMI. It supports poll() and select(). 61 61 62 62 config IPMI_SI 63 - tristate 'IPMI System Interface handler' 64 - select IPMI_PLAT_DATA 65 - help 66 - Provides a driver for System Interfaces (KCS, SMIC, BT). 67 - Currently, only KCS and SMIC are supported. If 68 - you are using IPMI, you should probably say "y" here. 63 + tristate 'IPMI System Interface handler' 64 + select IPMI_PLAT_DATA 65 + help 66 + Provides a driver for System Interfaces (KCS, SMIC, BT). 67 + Currently, only KCS and SMIC are supported. If 68 + you are using IPMI, you should probably say "y" here. 69 69 70 70 config IPMI_SSIF 71 - tristate 'IPMI SMBus handler (SSIF)' 72 - select I2C 73 - help 74 - Provides a driver for a SMBus interface to a BMC, meaning that you 75 - have a driver that must be accessed over an I2C bus instead of a 76 - standard interface. This module requires I2C support. 71 + tristate 'IPMI SMBus handler (SSIF)' 72 + select I2C 73 + help 74 + Provides a driver for a SMBus interface to a BMC, meaning that you 75 + have a driver that must be accessed over an I2C bus instead of a 76 + standard interface. This module requires I2C support. 77 77 78 78 config IPMI_POWERNV 79 - depends on PPC_POWERNV 80 - tristate 'POWERNV (OPAL firmware) IPMI interface' 81 - help 82 - Provides a driver for OPAL firmware-based IPMI interfaces. 79 + depends on PPC_POWERNV 80 + tristate 'POWERNV (OPAL firmware) IPMI interface' 81 + help 82 + Provides a driver for OPAL firmware-based IPMI interfaces. 83 83 84 84 config IPMI_WATCHDOG 85 - tristate 'IPMI Watchdog Timer' 86 - help 87 - This enables the IPMI watchdog timer. 85 + tristate 'IPMI Watchdog Timer' 86 + help 87 + This enables the IPMI watchdog timer. 88 88 89 89 config IPMI_POWEROFF 90 - tristate 'IPMI Poweroff' 91 - help 92 - This enables a function to power off the system with IPMI if 93 - the IPMI management controller is capable of this. 90 + tristate 'IPMI Poweroff' 91 + help 92 + This enables a function to power off the system with IPMI if 93 + the IPMI management controller is capable of this. 94 94 95 95 endif # IPMI_HANDLER 96 96 ··· 126 126 127 127 config ASPEED_BT_IPMI_BMC 128 128 depends on ARCH_ASPEED || COMPILE_TEST 129 - depends on REGMAP && REGMAP_MMIO && MFD_SYSCON 129 + depends on REGMAP && REGMAP_MMIO && MFD_SYSCON 130 130 tristate "BT IPMI bmc driver" 131 131 help 132 132 Provides a driver for the BT (Block Transfer) IPMI interface