Skip to content

Commit

Permalink
x86: make dump_pagetable() static
Browse files Browse the repository at this point in the history
dump_pagetable() can now become static.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Adrian Bunk authored and Ingo Molnar committed Feb 14, 2008
1 parent e8bff74 commit cae30f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion arch/x86/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ static int bad_address(void *p)
}
#endif

void dump_pagetable(unsigned long address)
static void dump_pagetable(unsigned long address)
{
#ifdef CONFIG_X86_32
__typeof__(pte_val(__pte(0))) page;
Expand Down
1 change: 0 additions & 1 deletion include/asm-x86/kdebug.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ extern void show_trace(struct task_struct *t, struct pt_regs *regs,
unsigned long *sp, unsigned long bp);
extern void __show_regs(struct pt_regs *regs);
extern void show_regs(struct pt_regs *regs);
extern void dump_pagetable(unsigned long);
extern unsigned long oops_begin(void);
extern void oops_end(unsigned long, struct pt_regs *, int signr);

Expand Down

0 comments on commit cae30f8

Please sign in to comment.