diff options
author | Paul Burton <paul.burton@mips.com> | 2019-02-02 01:43:24 +0000 |
---|---|---|
committer | Paul Burton <paul.burton@mips.com> | 2019-02-04 10:56:28 -0800 |
commit | 4ebea49ce233ce76421250f113a75d6d33c90e22 (patch) | |
tree | c2545c6b0cd71a225cd40a0e213716fee23d9c2b /arch/mips/mm/Makefile | |
parent | 7e8556d06acd552ba4d01c0e0d7307f7b79f9945 (diff) |
MIPS: mm: Un-inline get_new_mmu_context
In preparation for adding MMID support to get_new_mmu_context() which
will increase the size of the function somewhat, move it from
asm/mmu_context.h into a C file.
Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: linux-mips@vger.kernel.org
Diffstat (limited to 'arch/mips/mm/Makefile')
-rw-r--r-- | arch/mips/mm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/mm/Makefile b/arch/mips/mm/Makefile index 25d492736848..f34d7ff5eb60 100644 --- a/arch/mips/mm/Makefile +++ b/arch/mips/mm/Makefile @@ -4,6 +4,7 @@ # obj-y += cache.o +obj-y += context.o obj-y += extable.o obj-y += fault.o obj-y += gup.o |