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

char: Fix Kconfig indentation

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

authored by

Krzysztof Kozlowski and committed by
Greg Kroah-Hartman
c8175bd1 6e6c18bc

+18 -18
+2 -2
drivers/char/Kconfig
··· 439 439 Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O. 440 440 See the raw(8) manpage for more details. 441 441 442 - Applications should preferably open the device (eg /dev/hda1) 443 - with the O_DIRECT flag. 442 + Applications should preferably open the device (eg /dev/hda1) 443 + with the O_DIRECT flag. 444 444 445 445 config MAX_RAW_DEVS 446 446 int "Maximum number of RAW devices to support (1-65536)"
+1 -1
drivers/char/agp/Kconfig
··· 63 63 This option gives you AGP support for the GLX component of 64 64 X using the on-CPU northbridge of the AMD Athlon64/Opteron CPUs. 65 65 You still need an external AGP bridge like the AMD 8151, VIA 66 - K8T400M, SiS755. It may also support other AGP bridges when loaded 66 + K8T400M, SiS755. It may also support other AGP bridges when loaded 67 67 with agp_try_unsupported=1. 68 68 69 69 config AGP_INTEL
+5 -5
drivers/char/hw_random/Kconfig
··· 377 377 depends on HW_RANDOM && PCI && (ARM64 || (COMPILE_TEST && 64BIT)) 378 378 default HW_RANDOM 379 379 ---help--- 380 - This driver provides kernel-side support for the Random Number 381 - Generator hardware found on Cavium SoCs. 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"
+10 -10
drivers/char/ipmi/Kconfig
··· 8 8 depends on HAS_IOMEM 9 9 select IPMI_DMI_DECODE if DMI 10 10 help 11 - This enables the central IPMI message handler, required for IPMI 11 + This enables the central IPMI message handler, required for IPMI 12 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 19 If unsure, say N. 20 20 ··· 56 56 config IPMI_DEVICE_INTERFACE 57 57 tristate 'Device interface for IPMI' 58 58 help 59 - This provides an IOCTL interface to the IPMI message handler so 59 + This provides an IOCTL interface to the IPMI message handler so 60 60 userland processes may use IPMI. It supports poll() and select(). 61 61 62 62 config IPMI_SI 63 63 tristate 'IPMI System Interface handler' 64 64 select IPMI_PLAT_DATA 65 65 help 66 - Provides a driver for System Interfaces (KCS, SMIC, BT). 66 + Provides a driver for System Interfaces (KCS, SMIC, BT). 67 67 Currently, only KCS and SMIC are supported. If 68 68 you are using IPMI, you should probably say "y" here. 69 69 ··· 71 71 tristate 'IPMI SMBus handler (SSIF)' 72 72 select I2C 73 73 help 74 - Provides a driver for a SMBus interface to a BMC, meaning that you 74 + Provides a driver for a SMBus interface to a BMC, meaning that you 75 75 have a driver that must be accessed over an I2C bus instead of a 76 76 standard interface. This module requires I2C support. 77 77 ··· 79 79 depends on PPC_POWERNV 80 80 tristate 'POWERNV (OPAL firmware) IPMI interface' 81 81 help 82 - Provides a driver for OPAL firmware-based IPMI interfaces. 82 + Provides a driver for OPAL firmware-based IPMI interfaces. 83 83 84 84 config IPMI_WATCHDOG 85 85 tristate 'IPMI Watchdog Timer' 86 86 help 87 - This enables the IPMI watchdog timer. 87 + This enables the IPMI watchdog timer. 88 88 89 89 config IPMI_POWEROFF 90 90 tristate 'IPMI Poweroff' 91 91 help 92 - This enables a function to power off the system with IPMI if 92 + This enables a function to power off the system with IPMI if 93 93 the IPMI management controller is capable of this. 94 94 95 95 endif # IPMI_HANDLER