mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
e1b2f13488
Fix following warning: fault_32.c:38:24: error: symbol 'unhandled_fault' redeclared with different type - different modifiers When this warning was fixed several new warnings popped up - fix them too. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
517 B
C
15 lines
517 B
C
/* fault_32.c - visible as they are called from assembler */
|
|
asmlinkage int lookup_fault(unsigned long pc, unsigned long ret_pc,
|
|
unsigned long address);
|
|
asmlinkage void do_sparc_fault(struct pt_regs *regs, int text_fault, int write,
|
|
unsigned long address);
|
|
|
|
void window_overflow_fault(void);
|
|
void window_underflow_fault(unsigned long sp);
|
|
void window_ret_fault(struct pt_regs *regs);
|
|
|
|
/* srmmu.c */
|
|
extern char *srmmu_name;
|
|
|
|
extern void (*poke_srmmu)(void);
|