21fe3301f1
Building a PowerMac kernel with ARCH=powerpc causes a bunch of warnings, this fixes some of them Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
14 lines
239 B
C
14 lines
239 B
C
#ifndef __PPC_XMON_H
|
|
#define __PPC_XMON_H
|
|
#ifdef __KERNEL__
|
|
|
|
struct pt_regs;
|
|
|
|
extern int xmon(struct pt_regs *excp);
|
|
extern void xmon_printf(const char *fmt, ...);
|
|
extern void xmon_init(int);
|
|
extern void xmon_map_scc(void);
|
|
|
|
#endif
|
|
#endif
|