mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-16 05:50:19 +00:00
9f72ffedc8
This should be used instead of hard coding the corresponding platforms. The feature test macro is needed to support different SOCs in a single kernel image. While at it rename dma-mx1-mx2 to dma-v1 as mx25 doesn't use it and so the mx2 part is wrong and move the header to arch/arm/mach-imx. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
22 lines
592 B
Makefile
22 lines
592 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := irq.o clock.o gpio.o time.o devices.o cpu.o system.o
|
|
|
|
# MX51 uses the TZIC interrupt controller, older platforms use AVIC (irq.o)
|
|
obj-$(CONFIG_MXC_TZIC) += tzic.o
|
|
|
|
obj-$(CONFIG_IMX_HAVE_IOMUX_V1) += iomux-v1.o
|
|
obj-$(CONFIG_ARCH_MXC_IOMUX_V3) += iomux-v3.o
|
|
obj-$(CONFIG_MXC_PWM) += pwm.o
|
|
obj-$(CONFIG_USB_EHCI_MXC) += ehci.o
|
|
obj-$(CONFIG_MXC_ULPI) += ulpi.o
|
|
obj-$(CONFIG_ARCH_MXC_AUDMUX_V1) += audmux-v1.o
|
|
obj-$(CONFIG_ARCH_MXC_AUDMUX_V2) += audmux-v2.o
|
|
ifdef CONFIG_SND_IMX_SOC
|
|
obj-y += ssi-fiq.o
|
|
obj-y += ssi-fiq-ksym.o
|
|
endif
|