mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 21:56:41 +07:00
d0e47fba05
Rework DM644x code into SoC specific and board specific parts. This is also to generalize the structure a bit so it's easier to add support for new SoCs in the DaVinci family. Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
17 lines
331 B
Makefile
17 lines
331 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
#
|
|
|
|
# Common objects
|
|
obj-y := time.o irq.o clock.o serial.o io.o id.o psc.o \
|
|
gpio.o devices.o dma.o usb.o
|
|
|
|
obj-$(CONFIG_DAVINCI_MUX) += mux.o
|
|
|
|
# Chip specific
|
|
obj-$(CONFIG_ARCH_DAVINCI_DM644x) += dm644x.o
|
|
|
|
# Board specific
|
|
obj-$(CONFIG_MACH_DAVINCI_EVM) += board-dm644x-evm.o
|