mirror of
https://github.com/adulau/aha.git
synced 2025-01-05 15:43:22 +00:00
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>
13 lines
239 B
C
13 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
|