OSDN Git Service

ARM: 8782/1: vfp: clean up arch/arm/vfp/Makefile
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 18 Jul 2018 01:07:47 +0000 (02:07 +0100)
committerRussell King <rmk+kernel@armlinux.org.uk>
Mon, 30 Jul 2018 10:45:50 +0000 (11:45 +0100)
commit35f5a6acfb5be94e0b9df21c2a5ba934237c1ca3
tree9d3297f0f13581087b778db480296361d578e491
parent14459ce2bd980f74bc9c36f3ef42e7ba645e5dfe
ARM: 8782/1: vfp: clean up arch/arm/vfp/Makefile

Since commit 799c43415442 ("kbuild: thin archives make default for
all archs"), $(AR) is used instead of $(LD) to combine object files.

The following code in arch/arm/vfp/Makefile:

  LDFLAGS         +=--no-warn-mismatch

... is no longer used.

Also, arch/arm/Makefile already guards arch/arm/vfp/ by a boolean
symbol, CONFIG_VFP, like this:

  core-$(CONFIG_VFP)              += arch/arm/vfp/

So, $(CONFIG_VFP) is always evaluated to y in arch/arm/vfp/Makefile.
There is no point to use pseudo object, vfp.o, which never becomes
a module.  Add all objects to obj-y directly.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
arch/arm/vfp/Makefile