MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / kernel / power / poweroff.c
blob875d8f11a8be151fd5abfe6cb82b59d4a4d5fea7
1 /*
2 * poweroff.c - sysrq handler to gracefully power down machine.
4 * This file is released under the GPL v2
5 */
7 #include <linux/kernel.h>
8 #include <linux/sysrq.h>
9 #include <linux/init.h>
10 #include <linux/pm.h>
11 #include <linux/workqueue.h>
14 * When the user hits Sys-Rq o to power down the machine this is the
15 * callback we use.
18 static void do_poweroff(void *dummy)
20 if (pm_power_off)
21 pm_power_off();
24 static DECLARE_WORK(poweroff_work, do_poweroff, NULL);
26 static void handle_poweroff(int key, struct pt_regs *pt_regs,
27 struct tty_struct *tty)
29 schedule_work(&poweroff_work);
32 static struct sysrq_key_op sysrq_poweroff_op = {
33 .handler = handle_poweroff,
34 .help_msg = "powerOff",
35 .action_msg = "Power Off\n"
38 static int pm_sysrq_init(void)
40 register_sysrq_key('o', &sysrq_poweroff_op);
41 return 0;
44 subsys_initcall(pm_sysrq_init);