]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/power/poweroff.c
Merge branch 'sundance'
[linux-2.6-omap-h63xx.git] / kernel / power / poweroff.c
index 715081b2d8290acd08aae0ca32059d698e8c0882..7a4144ba3afd41a070ab340cab472dfe50f19978 100644 (file)
@@ -9,6 +9,7 @@
 #include <linux/init.h>
 #include <linux/pm.h>
 #include <linux/workqueue.h>
+#include <linux/reboot.h>
 
 /*
  * When the user hits Sys-Rq o to power down the machine this is the
@@ -17,8 +18,7 @@
 
 static void do_poweroff(void *dummy)
 {
-       if (pm_power_off)
-               pm_power_off();
+       kernel_power_off();
 }
 
 static DECLARE_WORK(poweroff_work, do_poweroff, NULL);