mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-13 11:51:54 +00:00
28 lines
681 B
Diff
28 lines
681 B
Diff
From d522eb6233178aa267d88af2465db453fa478b2c Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Tue, 5 Apr 2016 19:40:12 +0100
|
|
Subject: [PATCH 094/726] reboot: Use power off rather than busy spinning when
|
|
halt is requested
|
|
|
|
---
|
|
arch/arm/kernel/reboot.c | 4 +---
|
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
diff --git a/arch/arm/kernel/reboot.c b/arch/arm/kernel/reboot.c
|
|
index 3f0d5c3dae11..cfdbcc9826c0 100644
|
|
--- a/arch/arm/kernel/reboot.c
|
|
+++ b/arch/arm/kernel/reboot.c
|
|
@@ -102,9 +102,7 @@ void machine_shutdown(void)
|
|
*/
|
|
void machine_halt(void)
|
|
{
|
|
- local_irq_disable();
|
|
- smp_send_stop();
|
|
- while (1);
|
|
+ machine_power_off();
|
|
}
|
|
|
|
/*
|
|
--
|
|
2.33.1
|
|
|