aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/rtas.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/kernel/rtas.c')
-rw-r--r--arch/powerpc/kernel/rtas.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c
index 053cac19f714..52e95c2158c0 100644
--- a/arch/powerpc/kernel/rtas.c
+++ b/arch/powerpc/kernel/rtas.c
@@ -638,18 +638,18 @@ void rtas_halt(void)
638/* Must be in the RMO region, so we place it here */ 638/* Must be in the RMO region, so we place it here */
639static char rtas_os_term_buf[2048]; 639static char rtas_os_term_buf[2048];
640 640
641void rtas_panic_msg(char *str) 641void rtas_os_term(char *str)
642{
643 snprintf(rtas_os_term_buf, 2048, "OS panic: %s", str);
644}
645
646void rtas_os_term(void)
647{ 642{
648 int status; 643 int status;
649 644
645 if (panic_timeout)
646 return;
647
650 if (RTAS_UNKNOWN_SERVICE == rtas_token("ibm,os-term")) 648 if (RTAS_UNKNOWN_SERVICE == rtas_token("ibm,os-term"))
651 return; 649 return;
652 650
651 snprintf(rtas_os_term_buf, 2048, "OS panic: %s", str);
652
653 do { 653 do {
654 status = rtas_call(rtas_token("ibm,os-term"), 1, 1, NULL, 654 status = rtas_call(rtas_token("ibm,os-term"), 1, 1, NULL,
655 __pa(rtas_os_term_buf)); 655 __pa(rtas_os_term_buf));