aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/processor_idle.c2
-rw-r--r--include/acpi/processor.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c
index f355f1a1c211..4cf964803d7a 100644
--- a/drivers/acpi/processor_idle.c
+++ b/drivers/acpi/processor_idle.c
@@ -863,7 +863,6 @@ static int acpi_idle_enter_simple(struct cpuidle_device *dev,
863 current_thread_info()->status |= TS_POLLING; 863 current_thread_info()->status |= TS_POLLING;
864 864
865 lapic_timer_state_broadcast(pr, cx, 0); 865 lapic_timer_state_broadcast(pr, cx, 0);
866 cx->time += idle_time;
867 return index; 866 return index;
868} 867}
869 868
@@ -982,7 +981,6 @@ static int acpi_idle_enter_bm(struct cpuidle_device *dev,
982 current_thread_info()->status |= TS_POLLING; 981 current_thread_info()->status |= TS_POLLING;
983 982
984 lapic_timer_state_broadcast(pr, cx, 0); 983 lapic_timer_state_broadcast(pr, cx, 0);
985 cx->time += idle_time;
986 return index; 984 return index;
987} 985}
988 986
diff --git a/include/acpi/processor.h b/include/acpi/processor.h
index 022b2e8b82d0..c72a80160245 100644
--- a/include/acpi/processor.h
+++ b/include/acpi/processor.h
@@ -60,7 +60,6 @@ struct acpi_processor_cx {
60 u8 index; 60 u8 index;
61 u32 latency; 61 u32 latency;
62 u32 power; 62 u32 power;
63 u64 time;
64 u8 bm_sts_skip; 63 u8 bm_sts_skip;
65 char desc[ACPI_CX_DESC_LEN]; 64 char desc[ACPI_CX_DESC_LEN];
66}; 65};