mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
3c77c29c49
As audmux becomes a platform driver and its callers are all ASoC machine drivers, there is no reason to keep it in arch folder, so move it to sound/soc/imx. One bonus point would be those ASoC machine drivers stop including mach/audmux.h, since it's been moved to sound/soc/imx/imx-audmux.h. This should be a move to the right direction in terms of single kernel image goal. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
25 lines
606 B
Makefile
25 lines
606 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := clock.o time.o devices.o cpu.o system.o irq-common.o
|
|
|
|
obj-$(CONFIG_MXC_TZIC) += tzic.o
|
|
obj-$(CONFIG_MXC_AVIC) += avic.o
|
|
|
|
obj-$(CONFIG_IMX_HAVE_IOMUX_V1) += iomux-v1.o
|
|
obj-$(CONFIG_ARCH_MXC_IOMUX_V3) += iomux-v3.o
|
|
obj-$(CONFIG_IRAM_ALLOC) += iram_alloc.o
|
|
obj-$(CONFIG_MXC_PWM) += pwm.o
|
|
obj-$(CONFIG_MXC_ULPI) += ulpi.o
|
|
obj-$(CONFIG_MXC_USE_EPIT) += epit.o
|
|
obj-$(CONFIG_MXC_DEBUG_BOARD) += 3ds_debugboard.o
|
|
obj-$(CONFIG_CPU_FREQ_IMX) += cpufreq.o
|
|
ifdef CONFIG_SND_IMX_SOC
|
|
obj-y += ssi-fiq.o
|
|
obj-y += ssi-fiq-ksym.o
|
|
endif
|
|
|
|
obj-y += devices/
|