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

cpuidle: 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>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Krzysztof Kozlowski and committed by
Rafael J. Wysocki
656b4e63 5aa9ba63

+16 -16
+8 -8
drivers/cpuidle/Kconfig
··· 16 16 if CPU_IDLE 17 17 18 18 config CPU_IDLE_MULTIPLE_DRIVERS 19 - bool 19 + bool 20 20 21 21 config CPU_IDLE_GOV_LADDER 22 22 bool "Ladder governor (for periodic timer tick)" ··· 63 63 endmenu 64 64 65 65 config HALTPOLL_CPUIDLE 66 - tristate "Halt poll cpuidle driver" 67 - depends on X86 && KVM_GUEST 68 - default y 69 - help 70 - This option enables halt poll cpuidle driver, which allows to poll 71 - before halting in the guest (more efficient than polling in the 72 - host via halt_poll_ns for some scenarios). 66 + tristate "Halt poll cpuidle driver" 67 + depends on X86 && KVM_GUEST 68 + default y 69 + help 70 + This option enables halt poll cpuidle driver, which allows to poll 71 + before halting in the guest (more efficient than polling in the 72 + host via halt_poll_ns for some scenarios). 73 73 74 74 endif 75 75
+8 -8
drivers/cpuidle/Kconfig.arm
··· 3 3 # ARM CPU Idle drivers 4 4 # 5 5 config ARM_CPUIDLE 6 - bool "Generic ARM/ARM64 CPU idle Driver" 7 - select DT_IDLE_STATES 6 + bool "Generic ARM/ARM64 CPU idle Driver" 7 + select DT_IDLE_STATES 8 8 select CPU_IDLE_MULTIPLE_DRIVERS 9 - help 10 - Select this to enable generic cpuidle driver for ARM. 11 - It provides a generic idle driver whose idle states are configured 12 - at run-time through DT nodes. The CPUidle suspend backend is 13 - initialized by calling the CPU operations init idle hook 14 - provided by architecture code. 9 + help 10 + Select this to enable generic cpuidle driver for ARM. 11 + It provides a generic idle driver whose idle states are configured 12 + at run-time through DT nodes. The CPUidle suspend backend is 13 + initialized by calling the CPU operations init idle hook 14 + provided by architecture code. 15 15 16 16 config ARM_PSCI_CPUIDLE 17 17 bool "PSCI CPU idle Driver"