diff options
Diffstat (limited to 'arch/parisc/kernel/process.c')
-rw-r--r-- | arch/parisc/kernel/process.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c index 998700ce4556..e8dea4177113 100644 --- a/arch/parisc/kernel/process.c +++ b/arch/parisc/kernel/process.c | |||
@@ -54,12 +54,6 @@ | |||
54 | #include <asm/uaccess.h> | 54 | #include <asm/uaccess.h> |
55 | #include <asm/unwind.h> | 55 | #include <asm/unwind.h> |
56 | 56 | ||
57 | /* | ||
58 | * Power off function, if any | ||
59 | */ | ||
60 | void (*pm_power_off)(void); | ||
61 | EXPORT_SYMBOL(pm_power_off); | ||
62 | |||
63 | void default_idle(void) | 57 | void default_idle(void) |
64 | { | 58 | { |
65 | barrier(); | 59 | barrier(); |
@@ -142,6 +136,7 @@ void machine_halt(void) | |||
142 | */ | 136 | */ |
143 | } | 137 | } |
144 | 138 | ||
139 | void (*chassis_power_off)(void); | ||
145 | 140 | ||
146 | /* | 141 | /* |
147 | * This routine is called from sys_reboot to actually turn off the | 142 | * This routine is called from sys_reboot to actually turn off the |
@@ -150,8 +145,8 @@ void machine_halt(void) | |||
150 | void machine_power_off(void) | 145 | void machine_power_off(void) |
151 | { | 146 | { |
152 | /* If there is a registered power off handler, call it. */ | 147 | /* If there is a registered power off handler, call it. */ |
153 | if(pm_power_off) | 148 | if (chassis_power_off) |
154 | pm_power_off(); | 149 | chassis_power_off(); |
155 | 150 | ||
156 | /* Put the soft power button back under hardware control. | 151 | /* Put the soft power button back under hardware control. |
157 | * If the user had already pressed the power button, the | 152 | * If the user had already pressed the power button, the |
@@ -167,6 +162,8 @@ void machine_power_off(void) | |||
167 | KERN_EMERG "Please power this system off now."); | 162 | KERN_EMERG "Please power this system off now."); |
168 | } | 163 | } |
169 | 164 | ||
165 | void (*pm_power_off)(void) = machine_power_off; | ||
166 | EXPORT_SYMBOL(pm_power_off); | ||
170 | 167 | ||
171 | /* | 168 | /* |
172 | * Create a kernel thread | 169 | * Create a kernel thread |