Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fa41780606e7a5999a9096269c0ad8e7cee2b95b
Commit:     fa41780606e7a5999a9096269c0ad8e7cee2b95b
Parent:     2f2a2d9987c4836493bfb2a80960056ef86742d2
Author:     Yoichi Yuasa <[EMAIL PROTECTED]>
AuthorDate: Thu Aug 16 22:27:05 2007 +0900
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Thu Oct 11 23:45:59 2007 +0100

    [MIPS] VR41xx: replace infinite loop with hibernate
    
    Signed-off-by: Yoichi Yuasa <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/vr41xx/common/pmu.c |   11 ++---------
 1 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/arch/mips/vr41xx/common/pmu.c b/arch/mips/vr41xx/common/pmu.c
index ba0a4f6..ad5b6db 100644
--- a/arch/mips/vr41xx/common/pmu.c
+++ b/arch/mips/vr41xx/common/pmu.c
@@ -91,14 +91,7 @@ static void vr41xx_halt(void)
 {
        local_irq_disable();
        printk(KERN_NOTICE "\nYou can turn off the power supply\n");
-       while (1) ;
-}
-
-static void vr41xx_power_off(void)
-{
-       local_irq_disable();
-       printk(KERN_NOTICE "\nYou can turn off the power supply\n");
-       while (1) ;
+       __asm__("hibernate;\n");
 }
 
 static int __init vr41xx_pmu_init(void)
@@ -134,7 +127,7 @@ static int __init vr41xx_pmu_init(void)
        cpu_wait = vr41xx_cpu_wait;
        _machine_restart = vr41xx_restart;
        _machine_halt = vr41xx_halt;
-       pm_power_off = vr41xx_power_off;
+       pm_power_off = vr41xx_halt;
 
        return 0;
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to