mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Fix following warnings: srmmu.c:78:5: warning: symbol 'flush_page_for_dma_global' was not declared. Should it be static? srmmu.c:85:5: warning: symbol 'viking_mxcc_present' was not declared. Should it be static? srmmu.c:103:6: warning: symbol 'srmmu_nocache_bitmap' was not declared. Should it be static? srmmu.c:176:24: warning: Using plain integer as NULL pointer srmmu.c:731:46: warning: Using plain integer as NULL pointer srmmu.c:731:46: warning: Using plain integer as NULL pointer srmmu.c:731:46: warning: Using plain integer as NULL pointer srmmu.c:870:13: warning: symbol 'srmmu_paging_init' was not declared. Should it be static? Add proper prototypes in mm_32.h and drop local prototype in init_32.c Replace 0 with NULL Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
18 lines
625 B
C
18 lines
625 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 int viking_mxcc_present;
|
|
extern int flush_page_for_dma_global;
|
|
|
|
extern void (*poke_srmmu)(void);
|
|
|
|
void __init srmmu_paging_init(void);
|