diff options
author | Rob Herring <robh@kernel.org> | 2015-12-08 21:44:16 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2015-12-15 23:53:21 +0100 |
commit | 16956fed35fecde2201e23458cda193526b19559 (patch) | |
tree | 540334f3232efb2bd79c00aaa75dca6d4a7bea5f /arch/arm/mach-versatile/Makefile | |
parent | ARM: versatile: add DT based PCI detection (diff) | |
download | linux-16956fed35fecde2201e23458cda193526b19559.tar.xz linux-16956fed35fecde2201e23458cda193526b19559.zip |
ARM: versatile: switch to DT only booting and remove legacy code
With DT support for clocks, irqchips, timers, and PCI now in place, DT
based booting has feature parity with non-DT legacy boot. The final
piece is actually enabling common clock support on Versatile. Enabling
full DT support requires either removing the old Versatile clock code,
updating the legacy boot to use the common clock code, or making DT and
legacy boot mutually exclusive. Given that removing legacy boot code is
the goal anyway, I am going with the 1st option.
Signed-off-by: Rob Herring <robh@kernel.org>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-versatile/Makefile')
-rw-r--r-- | arch/arm/mach-versatile/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/mach-versatile/Makefile b/arch/arm/mach-versatile/Makefile index 81fa3fe25e1a..ccef51284d0d 100644 --- a/arch/arm/mach-versatile/Makefile +++ b/arch/arm/mach-versatile/Makefile @@ -2,8 +2,4 @@ # Makefile for the linux kernel. # -obj-y := core.o -obj-$(CONFIG_ARCH_VERSATILE_PB) += versatile_pb.o -obj-$(CONFIG_MACH_VERSATILE_AB) += versatile_ab.o -obj-$(CONFIG_MACH_VERSATILE_DT) += versatile_dt.o -obj-$(CONFIG_PCI) += pci.o +obj-y := core.o versatile_dt.o |