aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/processor_idle.c
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-02-02 23:55:55 +0100
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-02-02 23:55:55 +0100
commit5f97d6628640842229824c9f4fd433621c5a7b72 (patch)
treeba7c82e7b2066638f998419004b40600f03199c7 /drivers/acpi/processor_idle.c
parentACPI / cpuidle: Drop irrelevant comment from acpi_idle_enter_simple() (diff)
downloadlinux-dev-5f97d6628640842229824c9f4fd433621c5a7b72.tar.xz
linux-dev-5f97d6628640842229824c9f4fd433621c5a7b72.zip
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: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/processor_idle.c')
-rw-r--r--drivers/acpi/processor_idle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c
index 1798bbeff96b..c05d5ec9882a 100644
--- a/drivers/acpi/processor_idle.c
+++ b/drivers/acpi/processor_idle.c
@@ -968,20 +968,20 @@ 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;
break;
- case ACPI_STATE_C2:
+ case ACPI_STATE_C2:
state->enter = acpi_idle_enter_simple;
state->enter_dead = acpi_idle_play_dead;
drv->safe_state_index = count;
break;
- case ACPI_STATE_C3:
+ case ACPI_STATE_C3:
state->enter = pr->flags.bm_check ?
acpi_idle_enter_bm :
acpi_idle_enter_simple;