aboutsummaryrefslogtreecommitdiff
path: root/arch/mips/lemote/lm2e/reset.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/lemote/lm2e/reset.c')
-rw-r--r--arch/mips/lemote/lm2e/reset.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/mips/lemote/lm2e/reset.c b/arch/mips/lemote/lm2e/reset.c
index 099387a3827..2e64bf6929e 100644
--- a/arch/mips/lemote/lm2e/reset.c
+++ b/arch/mips/lemote/lm2e/reset.c
@@ -7,6 +7,7 @@
* Copyright (C) 2007 Lemote, Inc. & Institute of Computing Technology
* Author: Fuxin Zhang, zhangfx@lemote.com
*/
+#include <linux/init.h>
#include <linux/pm.h>
#include <asm/reboot.h>
@@ -33,9 +34,13 @@ static void loongson2e_power_off(void)
loongson2e_halt();
}
-void mips_reboot_setup(void)
+static int __init mips_reboot_setup(void)
{
_machine_restart = loongson2e_restart;
_machine_halt = loongson2e_halt;
pm_power_off = loongson2e_power_off;
+
+ return 0;
}
+
+arch_initcall(mips_reboot_setup);