diff options
author | Paul Burton <paul.burton@mips.com> | 2018-08-11 01:24:39 +0300 |
---|---|---|
committer | Paul Burton <paul.burton@mips.com> | 2018-08-11 03:27:51 +0300 |
commit | b29fea3676033c48a1145b075b3e88c785271f70 (patch) | |
tree | 6d1dcded9c75fae648aa8f2c410123f556e0268f /arch/mips/mm/tlbex.c | |
parent | 22f20a110321efb7cde3e87ae99862e1036ca285 (diff) | |
download | linux-b29fea3676033c48a1145b075b3e88c785271f70.tar.xz |
MIPS: Export tlbmiss_handler_setup_pgd near its definition
We export tlbmiss_handler_setup_pgd in arch/mips/mm/tlbex.c close to a
declaration of it, rather than close to its definition as is standard.
We've supported exporting symbols in assembly code since commit
22823ab419d8 ("EXPORT_SYMBOL() for asm"), so move the export to follow
the function's (stub) definition.
Signed-off-by: Paul Burton <paul.burton@mips.com>
Diffstat (limited to 'arch/mips/mm/tlbex.c')
-rw-r--r-- | arch/mips/mm/tlbex.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index 49312a14cd17..2223620fb573 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c @@ -1576,7 +1576,6 @@ extern u32 handle_tlbs[], handle_tlbs_end[]; extern u32 handle_tlbm[], handle_tlbm_end[]; extern u32 tlbmiss_handler_setup_pgd_start[]; extern u32 tlbmiss_handler_setup_pgd[]; -EXPORT_SYMBOL_GPL(tlbmiss_handler_setup_pgd); extern u32 tlbmiss_handler_setup_pgd_end[]; static void build_setup_pgd(void) |