Commit ed3fa7c9 authored by Peter Ma's avatar Peter Ma Committed by Haavard Skinnemoen

avr32: Add hardware power-down function call

This patch adds in the indirect call to pm_power_off(), as is done in
other architectures (e.g. ARM).

Tested on NGW100, with custom board with GPIO control over main DC
power.
Signed-off-by: default avatarPeter Ma <pma@mediamatech.com>
Signed-off-by: default avatarHaavard Skinnemoen <haavard.skinnemoen@atmel.com>
parent 29a0c393
...@@ -54,6 +54,8 @@ void machine_halt(void) ...@@ -54,6 +54,8 @@ void machine_halt(void)
void machine_power_off(void) void machine_power_off(void)
{ {
if (pm_power_off)
pm_power_off();
} }
void machine_restart(char *cmd) void machine_restart(char *cmd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment