diff options
Diffstat (limited to 'drivers/idle/intel_idle.c')
-rw-r--r-- | drivers/idle/intel_idle.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index fa6964d8681a..3f95a533c1a8 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c | |||
@@ -123,7 +123,7 @@ static struct cpuidle_state *cpuidle_state_table; | |||
123 | * which is also the index into the MWAIT hint array. | 123 | * which is also the index into the MWAIT hint array. |
124 | * Thus C0 is a dummy. | 124 | * Thus C0 is a dummy. |
125 | */ | 125 | */ |
126 | static struct cpuidle_state nehalem_cstates[CPUIDLE_STATE_MAX] = { | 126 | static struct cpuidle_state nehalem_cstates[] __initdata = { |
127 | { | 127 | { |
128 | .name = "C1-NHM", | 128 | .name = "C1-NHM", |
129 | .desc = "MWAIT 0x00", | 129 | .desc = "MWAIT 0x00", |
@@ -156,7 +156,7 @@ static struct cpuidle_state nehalem_cstates[CPUIDLE_STATE_MAX] = { | |||
156 | .enter = NULL } | 156 | .enter = NULL } |
157 | }; | 157 | }; |
158 | 158 | ||
159 | static struct cpuidle_state snb_cstates[CPUIDLE_STATE_MAX] = { | 159 | static struct cpuidle_state snb_cstates[] __initdata = { |
160 | { | 160 | { |
161 | .name = "C1-SNB", | 161 | .name = "C1-SNB", |
162 | .desc = "MWAIT 0x00", | 162 | .desc = "MWAIT 0x00", |
@@ -196,7 +196,7 @@ static struct cpuidle_state snb_cstates[CPUIDLE_STATE_MAX] = { | |||
196 | .enter = NULL } | 196 | .enter = NULL } |
197 | }; | 197 | }; |
198 | 198 | ||
199 | static struct cpuidle_state ivb_cstates[CPUIDLE_STATE_MAX] = { | 199 | static struct cpuidle_state ivb_cstates[] __initdata = { |
200 | { | 200 | { |
201 | .name = "C1-IVB", | 201 | .name = "C1-IVB", |
202 | .desc = "MWAIT 0x00", | 202 | .desc = "MWAIT 0x00", |
@@ -236,7 +236,7 @@ static struct cpuidle_state ivb_cstates[CPUIDLE_STATE_MAX] = { | |||
236 | .enter = NULL } | 236 | .enter = NULL } |
237 | }; | 237 | }; |
238 | 238 | ||
239 | static struct cpuidle_state hsw_cstates[CPUIDLE_STATE_MAX] = { | 239 | static struct cpuidle_state hsw_cstates[] __initdata = { |
240 | { | 240 | { |
241 | .name = "C1-HSW", | 241 | .name = "C1-HSW", |
242 | .desc = "MWAIT 0x00", | 242 | .desc = "MWAIT 0x00", |
@@ -297,7 +297,7 @@ static struct cpuidle_state hsw_cstates[CPUIDLE_STATE_MAX] = { | |||
297 | .enter = NULL } | 297 | .enter = NULL } |
298 | }; | 298 | }; |
299 | 299 | ||
300 | static struct cpuidle_state atom_cstates[CPUIDLE_STATE_MAX] = { | 300 | static struct cpuidle_state atom_cstates[] __initdata = { |
301 | { | 301 | { |
302 | .name = "C1E-ATM", | 302 | .name = "C1E-ATM", |
303 | .desc = "MWAIT 0x00", | 303 | .desc = "MWAIT 0x00", |
@@ -390,7 +390,7 @@ static int cpu_hotplug_notify(struct notifier_block *n, | |||
390 | int hotcpu = (unsigned long)hcpu; | 390 | int hotcpu = (unsigned long)hcpu; |
391 | struct cpuidle_device *dev; | 391 | struct cpuidle_device *dev; |
392 | 392 | ||
393 | switch (action & 0xf) { | 393 | switch (action & ~CPU_TASKS_FROZEN) { |
394 | case CPU_ONLINE: | 394 | case CPU_ONLINE: |
395 | 395 | ||
396 | if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE) | 396 | if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE) |
@@ -490,7 +490,7 @@ MODULE_DEVICE_TABLE(x86cpu, intel_idle_ids); | |||
490 | /* | 490 | /* |
491 | * intel_idle_probe() | 491 | * intel_idle_probe() |
492 | */ | 492 | */ |
493 | static int intel_idle_probe(void) | 493 | static int __init intel_idle_probe(void) |
494 | { | 494 | { |
495 | unsigned int eax, ebx, ecx; | 495 | unsigned int eax, ebx, ecx; |
496 | const struct x86_cpu_id *id; | 496 | const struct x86_cpu_id *id; |
@@ -558,7 +558,7 @@ static void intel_idle_cpuidle_devices_uninit(void) | |||
558 | * intel_idle_cpuidle_driver_init() | 558 | * intel_idle_cpuidle_driver_init() |
559 | * allocate, initialize cpuidle_states | 559 | * allocate, initialize cpuidle_states |
560 | */ | 560 | */ |
561 | static int intel_idle_cpuidle_driver_init(void) | 561 | static int __init intel_idle_cpuidle_driver_init(void) |
562 | { | 562 | { |
563 | int cstate; | 563 | int cstate; |
564 | struct cpuidle_driver *drv = &intel_idle_driver; | 564 | struct cpuidle_driver *drv = &intel_idle_driver; |
@@ -628,7 +628,7 @@ static int intel_idle_cpu_init(int cpu) | |||
628 | int num_substates, mwait_hint, mwait_cstate, mwait_substate; | 628 | int num_substates, mwait_hint, mwait_cstate, mwait_substate; |
629 | 629 | ||
630 | if (cpuidle_state_table[cstate].enter == NULL) | 630 | if (cpuidle_state_table[cstate].enter == NULL) |
631 | continue; | 631 | break; |
632 | 632 | ||
633 | if (cstate + 1 > max_cstate) { | 633 | if (cstate + 1 > max_cstate) { |
634 | printk(PREFIX "max_cstate %d reached\n", max_cstate); | 634 | printk(PREFIX "max_cstate %d reached\n", max_cstate); |