Commit 5f97d662 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki
Browse files

ACPI / cpuidle: Clean up white space in a switch statement



White space in the switch statement in acpi_processor_setup_cpuidle_states()
does not adhere to the kernel coding style and that makes the code
difficult to read.  Clean that up.

Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent de6cc4ec
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -968,8 +968,8 @@ static int acpi_processor_setup_cpuidle_states(struct acpi_processor *pr)

		state->flags = 0;
		switch (cx->type) {
			case ACPI_STATE_C1:

		case ACPI_STATE_C1:
			state->enter = acpi_idle_enter_c1;
			state->enter_dead = acpi_idle_play_dead;
			drv->safe_state_index = count;