|
@@ -41,6 +41,7 @@
|
|
#include <asm/spu_priv1.h>
|
|
#include <asm/spu_priv1.h>
|
|
#include <asm/firmware.h>
|
|
#include <asm/firmware.h>
|
|
#include <asm/setjmp.h>
|
|
#include <asm/setjmp.h>
|
|
|
|
+#include <asm/reg.h>
|
|
|
|
|
|
#ifdef CONFIG_PPC64
|
|
#ifdef CONFIG_PPC64
|
|
#include <asm/hvcall.h>
|
|
#include <asm/hvcall.h>
|
|
@@ -159,8 +160,6 @@ static int xmon_no_auto_backtrace;
|
|
extern void xmon_enter(void);
|
|
extern void xmon_enter(void);
|
|
extern void xmon_leave(void);
|
|
extern void xmon_leave(void);
|
|
|
|
|
|
-extern void xmon_save_regs(struct pt_regs *);
|
|
|
|
-
|
|
|
|
#ifdef CONFIG_PPC64
|
|
#ifdef CONFIG_PPC64
|
|
#define REG "%.16lx"
|
|
#define REG "%.16lx"
|
|
#define REGS_PER_LINE 4
|
|
#define REGS_PER_LINE 4
|
|
@@ -532,7 +531,7 @@ int xmon(struct pt_regs *excp)
|
|
struct pt_regs regs;
|
|
struct pt_regs regs;
|
|
|
|
|
|
if (excp == NULL) {
|
|
if (excp == NULL) {
|
|
- xmon_save_regs(®s);
|
|
|
|
|
|
+ ppc_save_regs(®s);
|
|
excp = ®s;
|
|
excp = ®s;
|
|
}
|
|
}
|
|
|
|
|