aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorThadeu Lima de Souza Cascardo <cascardo@holoscopio.com>2009-07-08 07:23:32 -0400
committerRafael J. Wysocki <rjw@sisk.pl>2009-09-14 14:26:58 -0400
commite681c9dd62fe8fcc5bba28a3ca3f7dc8be940206 (patch)
tree3ac522149e3171417897754b53b765e38d9ca25a /kernel
parentac8d513a6801c8636922ccf4f30211810c9a56ce (diff)
PM: Fix typo in label name s/Platofrm_finish/Platform_finish/
Although the same label name is used somewhere else in the file, this particular label was consistently typoed in all of its uses. Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/power/hibernate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 81d2e7464893..ec8202512b05 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -460,11 +460,11 @@ int hibernation_platform_enter(void)
460 460
461 error = hibernation_ops->prepare(); 461 error = hibernation_ops->prepare();
462 if (error) 462 if (error)
463 goto Platofrm_finish; 463 goto Platform_finish;
464 464
465 error = disable_nonboot_cpus(); 465 error = disable_nonboot_cpus();
466 if (error) 466 if (error)
467 goto Platofrm_finish; 467 goto Platform_finish;
468 468
469 local_irq_disable(); 469 local_irq_disable();
470 sysdev_suspend(PMSG_HIBERNATE); 470 sysdev_suspend(PMSG_HIBERNATE);
@@ -476,7 +476,7 @@ int hibernation_platform_enter(void)
476 * We don't need to reenable the nonboot CPUs or resume consoles, since 476 * We don't need to reenable the nonboot CPUs or resume consoles, since
477 * the system is going to be halted anyway. 477 * the system is going to be halted anyway.
478 */ 478 */
479 Platofrm_finish: 479 Platform_finish:
480 hibernation_ops->finish(); 480 hibernation_ops->finish();
481 481
482 dpm_suspend_noirq(PMSG_RESTORE); 482 dpm_suspend_noirq(PMSG_RESTORE);