aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/mips/kernel/reset.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/mips/kernel/reset.c b/arch/mips/kernel/reset.c
index ae2ba67b7ef6..a131aa0cbe66 100644
--- a/arch/mips/kernel/reset.c
+++ b/arch/mips/kernel/reset.c
@@ -23,16 +23,18 @@ void (*_machine_power_off)(void);
23 23
24void machine_restart(char *command) 24void machine_restart(char *command)
25{ 25{
26 _machine_restart(command); 26 if (_machine_restart)
27 _machine_restart(command);
27} 28}
28 29
29void machine_halt(void) 30void machine_halt(void)
30{ 31{
31 _machine_halt(); 32 if (_machine_halt)
33 _machine_halt();
32} 34}
33 35
34void machine_power_off(void) 36void machine_power_off(void)
35{ 37{
36 _machine_power_off(); 38 if (_machine_power_off)
39 _machine_power_off();
37} 40}
38