diff options
author | Paul Burton <[email protected]> | 2015-09-22 11:56:36 -0700 |
---|---|---|
committer | Ralf Baechle <[email protected]> | 2015-11-11 08:35:42 +0100 |
commit | e1137e1d5944c2a23ca100a0b4fe6310f9cc086d (patch) | |
tree | 8a20a0402417764bbdd93eab86516c2b88b39a28 | |
parent | 033549c60969753d9c54053901b2041d91c4fbff (diff) |
MIPS: Malta: Split obj-y entries across lines
Split the obj-y entries to their own lines such that it's easier to see
what's going on when adding or removing entries.
Signed-off-by: Paul Burton <[email protected]>
Cc: [email protected]
Cc: Markos Chandras <[email protected]>
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/11220/
Signed-off-by: Ralf Baechle <[email protected]>
-rw-r--r-- | arch/mips/mti-malta/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/mips/mti-malta/Makefile b/arch/mips/mti-malta/Makefile index ea35587a5c29..87c85a5b4faf 100644 --- a/arch/mips/mti-malta/Makefile +++ b/arch/mips/mti-malta/Makefile @@ -5,9 +5,15 @@ # Copyright (C) 2008 Wind River Systems, Inc. # written by Ralf Baechle <[email protected]> # -obj-y := malta-display.o malta-dt.o malta-init.o \ - malta-int.o malta-memory.o malta-platform.o \ - malta-reset.o malta-setup.o malta-time.o +obj-y += malta-display.o +obj-y += malta-dt.o +obj-y += malta-init.o +obj-y += malta-int.o +obj-y += malta-memory.o +obj-y += malta-platform.o +obj-y += malta-reset.o +obj-y += malta-setup.o +obj-y += malta-time.o obj-$(CONFIG_MIPS_CMP) += malta-amon.o obj-$(CONFIG_MIPS_MALTA_PM) += malta-pm.o |