Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b142159f authored by Yoichi Yuasa's avatar Yoichi Yuasa Committed by Linus Torvalds
Browse files

[PATCH] mips: add pm_power_off



Adds pm_power_off() to MIPS.

Signed-off-by: default avatarYoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8f56a31a
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -12,6 +12,9 @@
#include <linux/reboot.h>
#include <asm/reboot.h>

void (*pm_power_off)(void);
EXPORT_SYMBOL(pm_power_off);

/*
 * Urgs ...  Too many MIPS machines to handle this in a generic way.
 * So handle all using function pointers to machine specific
@@ -33,6 +36,9 @@ void machine_halt(void)

void machine_power_off(void)
{
	if (pm_power_off)
		pm_power_off();

	_machine_power_off();
}