diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-06-20 23:40:55 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-07-12 11:24:09 +0200 |
commit | a16729ea822806a6f87415bcb523eaeb7f4b4ebd (patch) | |
tree | 1208e2d5027bc322e4b07f533eb8ef778ec71fbc /arch/arm/mach-ux500/Makefile | |
parent | ARM: ux500: move soc_id driver to drivers/soc (diff) | |
download | linux-a16729ea822806a6f87415bcb523eaeb7f4b4ebd.tar.xz linux-a16729ea822806a6f87415bcb523eaeb7f4b4ebd.zip |
ARM: ux500: consolidate base platform files
The cpu.c and cache-l2x0.c files hold only two or three simple
functions each, and they are all called from the machine
descriptors, so we can just move them all into the same file
for simplicity and consistency.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/mach-ux500/Makefile')
-rw-r--r-- | arch/arm/mach-ux500/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-ux500/Makefile b/arch/arm/mach-ux500/Makefile index 753d3eed1985..56d0eb6e254e 100644 --- a/arch/arm/mach-ux500/Makefile +++ b/arch/arm/mach-ux500/Makefile @@ -2,8 +2,7 @@ # Makefile for the linux kernel, U8500 machine. # -obj-y := cpu.o pm.o -obj-$(CONFIG_CACHE_L2X0) += cache-l2x0.o +obj-y := pm.o obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o obj-$(CONFIG_MACH_MOP500) += board-mop500-audio.o obj-$(CONFIG_SMP) += platsmp.o |