diff options
author | Kevin Hilman <khilman@deeprootsystems.com> | 2009-04-14 11:30:11 -0500 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-04-27 09:50:11 -0700 |
commit | d0e47fba054a55e0066c6ae2c807d98d086af5a9 (patch) | |
tree | aa4b3b6312d1a5f22a3fd8f97e9ab05a805d7144 /arch/arm/mach-davinci/Makefile | |
parent | 73d3c68f09e608be983013dc8b3e49aebe89298c (diff) | |
download | blackbird-op-linux-d0e47fba054a55e0066c6ae2c807d98d086af5a9.tar.gz blackbird-op-linux-d0e47fba054a55e0066c6ae2c807d98d086af5a9.zip |
davinci: update DM644x support in preparation for more SoCs
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>
Diffstat (limited to 'arch/arm/mach-davinci/Makefile')
-rw-r--r-- | arch/arm/mach-davinci/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/Makefile b/arch/arm/mach-davinci/Makefile index b27871af4fcf..1674661942f3 100644 --- a/arch/arm/mach-davinci/Makefile +++ b/arch/arm/mach-davinci/Makefile @@ -9,5 +9,8 @@ obj-y := time.o irq.o clock.o serial.o io.o id.o psc.o \ obj-$(CONFIG_DAVINCI_MUX) += mux.o +# Chip specific +obj-$(CONFIG_ARCH_DAVINCI_DM644x) += dm644x.o + # Board specific -obj-$(CONFIG_MACH_DAVINCI_EVM) += board-evm.o +obj-$(CONFIG_MACH_DAVINCI_EVM) += board-dm644x-evm.o |