--- arch/arm/mach-mx27/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) Index: arch/arm/mach-mx27/Makefile =================================================================== --- /dev/null +++ arch/arm/mach-mx27/Makefile @@ -0,0 +1,13 @@ +# +# Makefile for the linux kernel. +# + +# Object file lists. + +obj-y := mm.o time.o dma.o gpio_mux.o clock.o devices.o serial.o system.o usb.o cpu.o +obj-$(CONFIG_MACH_MX27ADS) += mx27ads.o gpio.o +obj-$(CONFIG_MACH_PCM038) += pcm038.o gpio.o + +# power management +obj-$(CONFIG_PM) += pm.o mxc_pm.o +obj-$(CONFIG_DPM) += dpm.o --- arch/arm/mach-mx27/Makefile.orig +++ arch/arm/mach-mx27/Makefile @@ -4,7 +4,8 @@ # Object file lists. -obj-y := mm.o time.o dma.o gpio_mux.o clock.o devices.o serial.o system.o usb.o cpu.o +obj-y := mm.o time.o dma.o gpio_mux.o clock.o devices.o serial.o system.o cpu.o +# FIXME rsc: usb.o obj-$(CONFIG_MACH_MX27ADS) += mx27ads.o gpio.o obj-$(CONFIG_MACH_PCM038) += pcm038.o gpio.o Index: arch/arm/mach-mx27/pcm038.c ===================================================================