diff options
author | Marek Vasut | 2011-11-26 07:32:24 +0100 |
---|---|---|
committer | Albert ARIBAUD | 2011-12-06 23:59:32 +0100 |
commit | d10237d275300562bbfecbbe2f59a97cfb9dc180 (patch) | |
tree | 95b93e26855535cee1ac2dd91c29fc230b3a264b /arch/arm/cpu/pxa/Makefile | |
parent | abc20aba1834c321a638b367c18dcce1bb4e232d (diff) |
PXA: Separate PXA2xx CPU init
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Diffstat (limited to 'arch/arm/cpu/pxa/Makefile')
-rw-r--r-- | arch/arm/cpu/pxa/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/cpu/pxa/Makefile b/arch/arm/cpu/pxa/Makefile index e8b59a30c9b..29dc63781a9 100644 --- a/arch/arm/cpu/pxa/Makefile +++ b/arch/arm/cpu/pxa/Makefile @@ -27,7 +27,10 @@ LIB = $(obj)lib$(CPU).o START = start.o -COBJS += cpu.o +COBJS-$(CONFIG_CPU_PXA25X) = pxa2xx.o +COBJS-$(CONFIG_CPU_PXA27X) = pxa2xx.o + +COBJS = $(COBJS-y) COBJS += pxafb.o COBJS += timer.o COBJS += usb.o |