diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-09-09 06:26:20 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-10-02 07:55:02 -0400 |
commit | ac84eb47cc199d9df7eeb7b32630fc09295a030b (patch) | |
tree | 4471c7b7b13575e94201c51337ce2b9dbc95c124 /arch/arm/plat-iop/Makefile | |
parent | 895ed4e895756ca5e0a0bf43f45b7eed7b9c604a (diff) |
kbuild: remove unnecessary variable initializaions
Clearing obj-y, obj-m, obj-n, obj- in each Makefile is
a useless habit.
They are non-exported variables; therefore they are always empty
whenever descending into each subdirectory.
(Moreorver, obj-y and obj-m are also set to empty at the beginning
of scripts/Makefile.build)
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Peter Foley <pefoley2@pefoley.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/arm/plat-iop/Makefile')
-rw-r--r-- | arch/arm/plat-iop/Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm/plat-iop/Makefile b/arch/arm/plat-iop/Makefile index 224e56c6049b..f2af203d601f 100644 --- a/arch/arm/plat-iop/Makefile +++ b/arch/arm/plat-iop/Makefile | |||
@@ -2,8 +2,6 @@ | |||
2 | # Makefile for the linux kernel. | 2 | # Makefile for the linux kernel. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := | ||
6 | |||
7 | # IOP32X | 5 | # IOP32X |
8 | obj-$(CONFIG_ARCH_IOP32X) += i2c.o | 6 | obj-$(CONFIG_ARCH_IOP32X) += i2c.o |
9 | obj-$(CONFIG_ARCH_IOP32X) += pci.o | 7 | obj-$(CONFIG_ARCH_IOP32X) += pci.o |
@@ -27,7 +25,3 @@ obj-$(CONFIG_ARCH_IOP33X) += restart.o | |||
27 | # IOP13XX | 25 | # IOP13XX |
28 | obj-$(CONFIG_ARCH_IOP13XX) += cp6.o | 26 | obj-$(CONFIG_ARCH_IOP13XX) += cp6.o |
29 | obj-$(CONFIG_ARCH_IOP13XX) += time.o | 27 | obj-$(CONFIG_ARCH_IOP13XX) += time.o |
30 | |||
31 | obj-m := | ||
32 | obj-n := | ||
33 | obj- := | ||