forked from Minki/linux
2cb536d13c
This patch adds clock support for i.MX35 SoCs. We do not support setting of clock rates yet, but most interesting clock rates should be reported. I couldn't test all clock rates and the datasheet contains some obvious bugs, so expect some bugs in this code. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16 lines
436 B
Makefile
16 lines
436 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := mm.o devices.o
|
|
obj-$(CONFIG_ARCH_MX31) += clock.o iomux.o
|
|
obj-$(CONFIG_ARCH_MX35) += clock-imx35.o
|
|
obj-$(CONFIG_MACH_MX31ADS) += mx31ads.o
|
|
obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o
|
|
obj-$(CONFIG_MACH_PCM037) += pcm037.o
|
|
obj-$(CONFIG_MACH_MX31_3DS) += mx31pdk.o
|
|
obj-$(CONFIG_MACH_MX31MOBOARD) += mx31moboard.o mx31moboard-devboard.o \
|
|
mx31moboard-marxbot.o
|