forked from Minki/linux
48be9ac930
In the beginning of DT for Dove it was reasonable to have it close to non-DT code. With improved DT support, it became more and more difficult to not break non-DT while changing DT code. This patch splits up DT board setup and introduces a DOVE_LEGACY config to allow to remove legacy code for DT-only kernels. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
7 lines
229 B
Makefile
7 lines
229 B
Makefile
obj-y += common.o addr-map.o irq.o
|
|
obj-$(CONFIG_DOVE_LEGACY) += mpp.o
|
|
obj-$(CONFIG_PCI) += pcie.o
|
|
obj-$(CONFIG_MACH_DOVE_DB) += dove-db-setup.o
|
|
obj-$(CONFIG_MACH_DOVE_DT) += board-dt.o
|
|
obj-$(CONFIG_MACH_CM_A510) += cm-a510.o
|