diff options
author | Tony Wu <tung7970@gmail.com> | 2013-07-18 09:47:37 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-08-26 15:31:52 +0200 |
commit | 774b6175f8f6547e2e7d4cf8b5fa60a01f39b03e (patch) | |
tree | 28babbd14d6021279ced2303f949607193e0528f /arch/mips/mm | |
parent | d8dfad3876e4386666b759da3c833d62fb8b2267 (diff) | |
download | blackbird-obmc-linux-774b6175f8f6547e2e7d4cf8b5fa60a01f39b03e.tar.gz blackbird-obmc-linux-774b6175f8f6547e2e7d4cf8b5fa60a01f39b03e.zip |
MIPS: tlbex: Guard tlbmiss_handler_setup_pgd
tlbmiss_handler_setup_pgd* are only referenced when
CONFIG_MIPS_PGD_C0_CONTEXT is defined.
Signed-off-by: Tony Wu <tung7970@gmail.com>
Cc: Jayachandran C. <jchandra@broadcom.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5601/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/tlb-funcs.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/mm/tlb-funcs.S b/arch/mips/mm/tlb-funcs.S index 30a494db99c2..79bca3130bd1 100644 --- a/arch/mips/mm/tlb-funcs.S +++ b/arch/mips/mm/tlb-funcs.S @@ -16,10 +16,12 @@ #define FASTPATH_SIZE 128 +#ifdef CONFIG_MIPS_PGD_C0_CONTEXT LEAF(tlbmiss_handler_setup_pgd) .space 16 * 4 END(tlbmiss_handler_setup_pgd) EXPORT(tlbmiss_handler_setup_pgd_end) +#endif LEAF(handle_tlbm) .space FASTPATH_SIZE * 4 |