aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm64/kernel/process.c')
-rw-r--r--arch/arm64/kernel/process.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c
index 116a60abe86f..bbefb6fdfee2 100644
--- a/arch/arm64/kernel/process.c
+++ b/arch/arm64/kernel/process.c
@@ -81,8 +81,8 @@ void soft_restart(unsigned long addr)
81void (*pm_power_off)(void); 81void (*pm_power_off)(void);
82EXPORT_SYMBOL_GPL(pm_power_off); 82EXPORT_SYMBOL_GPL(pm_power_off);
83 83
84void (*pm_restart)(const char *cmd); 84void (*arm_pm_restart)(char str, const char *cmd);
85EXPORT_SYMBOL_GPL(pm_restart); 85EXPORT_SYMBOL_GPL(arm_pm_restart);
86 86
87 87
88/* 88/*
@@ -164,8 +164,8 @@ void machine_restart(char *cmd)
164 local_fiq_disable(); 164 local_fiq_disable();
165 165
166 /* Now call the architecture specific reboot code. */ 166 /* Now call the architecture specific reboot code. */
167 if (pm_restart) 167 if (arm_pm_restart)
168 pm_restart(cmd); 168 arm_pm_restart('h', cmd);
169 169
170 /* 170 /*
171 * Whoops - the architecture was unable to reboot. 171 * Whoops - the architecture was unable to reboot.