mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-01 20:49:05 +07:00
drivers/idle/intel_idle.c: fix confusing code identation
Fix a code indentation in the function intel_idle_cpu_init that looks confusing.o Suggested-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com> Reviewed-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com> Signed-off-by: Marcos Paulo de Souza <marcos.mage@gmail.com> Cc: "Brown, Len" <len.brown@intel.com> Cc: Len Brown <lenb@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1de5b41cd3
commit
dc716e96f5
@ -507,8 +507,7 @@ int intel_idle_cpu_init(int cpu)
|
|||||||
int num_substates;
|
int num_substates;
|
||||||
|
|
||||||
if (cstate > max_cstate) {
|
if (cstate > max_cstate) {
|
||||||
printk(PREFIX "max_cstate %d reached\n",
|
printk(PREFIX "max_cstate %d reached\n", max_cstate);
|
||||||
max_cstate);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -524,8 +523,9 @@ int intel_idle_cpu_init(int cpu)
|
|||||||
dev->states_usage[dev->state_count].driver_data =
|
dev->states_usage[dev->state_count].driver_data =
|
||||||
(void *)get_driver_data(cstate);
|
(void *)get_driver_data(cstate);
|
||||||
|
|
||||||
dev->state_count += 1;
|
dev->state_count += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev->cpu = cpu;
|
dev->cpu = cpu;
|
||||||
|
|
||||||
if (cpuidle_register_device(dev)) {
|
if (cpuidle_register_device(dev)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user