diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2013-07-15 03:21:57 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-07-19 04:36:10 -0400 |
commit | 38a997a70e6cf0ee9fc26de146601ba10fa552a4 (patch) | |
tree | 51dd4635599b3e2a24147905c181f09a1b1ee3de /arch | |
parent | 628f0650ea65ef2ec0a2bde141c271dea1d18904 (diff) |
MIPS: tlbex: fix broken build in v3.11-rc1
Commit 6ba045f9fbdafb48da42aa8576ea7a3980443136 (MIPS: Move generated code
to .text for microMIPS) deleted tlbmiss_handler_setup_pgd_array, but some
references were not converted. Fix that to enable building a MIPS kernel.
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Acked-by: Jayachandran C. <jchandra@broadcom.com>
Acked-by: David Daney <david.daney@cavium.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5589/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/mm/tlbex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index 605b6fc13697..523775d7a20e 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -1466,7 +1466,7 @@ static void __cpuinit build_r4000_setup_pgd(void) | |||
1466 | { | 1466 | { |
1467 | const int a0 = 4; | 1467 | const int a0 = 4; |
1468 | const int a1 = 5; | 1468 | const int a1 = 5; |
1469 | u32 *p = tlbmiss_handler_setup_pgd_array; | 1469 | u32 *p = tlbmiss_handler_setup_pgd; |
1470 | const int tlbmiss_handler_setup_pgd_size = | 1470 | const int tlbmiss_handler_setup_pgd_size = |
1471 | tlbmiss_handler_setup_pgd_end - tlbmiss_handler_setup_pgd; | 1471 | tlbmiss_handler_setup_pgd_end - tlbmiss_handler_setup_pgd; |
1472 | struct uasm_label *l = labels; | 1472 | struct uasm_label *l = labels; |