Skip to content

Commit

Permalink
MIPS: mm: Split obj-y to a file per line
Browse files Browse the repository at this point in the history
Split always-included objects to one per line in order to make it easier
to modify the list of included objects.

Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: linux-mips@vger.kernel.org
  • Loading branch information
Paul Burton committed Feb 4, 2019
1 parent 558ec8a commit 7e8556d
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions arch/mips/mm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@
# Makefile for the Linux/MIPS-specific parts of the memory manager.
#

obj-y += cache.o extable.o fault.o \
gup.o init.o mmap.o page.o page-funcs.o \
pgtable.o tlbex.o tlbex-fault.o tlb-funcs.o
obj-y += cache.o
obj-y += extable.o
obj-y += fault.o
obj-y += gup.o
obj-y += init.o
obj-y += mmap.o
obj-y += page.o
obj-y += page-funcs.o
obj-y += pgtable.o
obj-y += tlbex.o
obj-y += tlbex-fault.o
obj-y += tlb-funcs.o

ifdef CONFIG_CPU_MICROMIPS
obj-y += uasm-micromips.o
Expand Down

0 comments on commit 7e8556d

Please sign in to comment.