Commit c4cb8ecc authored by Dave C Boutcher's avatar Dave C Boutcher Committed by Paul Mackerras

[PATCH] powerpc: return correct rtas status from ibm,suspend-me

Correctly return the status from the RTAS call.  rtas_call expects
to return the status as a return value.
Signed-off-by: default avatarDave Boutcher <sleddog@us.ibm.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 31a7f67e
...@@ -588,8 +588,8 @@ static void rtas_percpu_suspend_me(void *info) ...@@ -588,8 +588,8 @@ static void rtas_percpu_suspend_me(void *info)
if (rc == H_Continue) { if (rc == H_Continue) {
data->waiting = 0; data->waiting = 0;
rtas_call(ibm_suspend_me_token, 0, 1, data->args->args[data->args->nargs] =
data->args->args); rtas_call(ibm_suspend_me_token, 0, 1, NULL);
} else { } else {
data->waiting = -EBUSY; data->waiting = -EBUSY;
printk(KERN_ERR "Error on H_Join hypervisor call\n"); printk(KERN_ERR "Error on H_Join hypervisor call\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment