diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
commit | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch) | |
tree | a57612d1888735a2ec7972891b68c1ac5ec8faea /arch/arm/plat-mxc/Makefile | |
parent | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff) |
Diffstat (limited to 'arch/arm/plat-mxc/Makefile')
-rw-r--r-- | arch/arm/plat-mxc/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/Makefile b/arch/arm/plat-mxc/Makefile new file mode 100644 index 00000000000..d53c35fe2ea --- /dev/null +++ b/arch/arm/plat-mxc/Makefile | |||
@@ -0,0 +1,27 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | # Common support | ||
6 | obj-y := clock.o time.o devices.o cpu.o system.o irq-common.o | ||
7 | |||
8 | # MX51 uses the TZIC interrupt controller, older platforms use AVIC | ||
9 | obj-$(CONFIG_MXC_TZIC) += tzic.o | ||
10 | obj-$(CONFIG_MXC_AVIC) += avic.o | ||
11 | |||
12 | obj-$(CONFIG_IMX_HAVE_IOMUX_V1) += iomux-v1.o | ||
13 | obj-$(CONFIG_ARCH_MXC_IOMUX_V3) += iomux-v3.o | ||
14 | obj-$(CONFIG_IRAM_ALLOC) += iram_alloc.o | ||
15 | obj-$(CONFIG_MXC_PWM) += pwm.o | ||
16 | obj-$(CONFIG_MXC_ULPI) += ulpi.o | ||
17 | obj-$(CONFIG_MXC_USE_EPIT) += epit.o | ||
18 | obj-$(CONFIG_ARCH_MXC_AUDMUX_V1) += audmux-v1.o | ||
19 | obj-$(CONFIG_ARCH_MXC_AUDMUX_V2) += audmux-v2.o | ||
20 | obj-$(CONFIG_MXC_DEBUG_BOARD) += 3ds_debugboard.o | ||
21 | obj-$(CONFIG_CPU_FREQ_IMX) += cpufreq.o | ||
22 | ifdef CONFIG_SND_IMX_SOC | ||
23 | obj-y += ssi-fiq.o | ||
24 | obj-y += ssi-fiq-ksym.o | ||
25 | endif | ||
26 | |||
27 | obj-y += devices/ | ||