diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2011-04-13 19:43:29 +1000 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2011-04-13 19:43:29 +1000 |
commit | b7af5831850ca238c60f50304490f4ec6270af0c (patch) | |
tree | 1baf33f6e3dc340aa55133ca65b8670bd7926b6f /arch/x86/cpu/sc520/Makefile | |
parent | fea25720013f84427a0ba8833a38614fcaf488ba (diff) | |
download | u-boot-linaro-stable-b7af5831850ca238c60f50304490f4ec6270af0c.tar.gz |
sc520: Move reset to stand-alone file
Partial linking allows weak functions to be overridden in files containing
only one function. Moving the sc520 override of reset_cpu gets rid of an
ugly #ifdef
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'arch/x86/cpu/sc520/Makefile')
-rw-r--r-- | arch/x86/cpu/sc520/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/cpu/sc520/Makefile b/arch/x86/cpu/sc520/Makefile index 54260b610..694b61ee4 100644 --- a/arch/x86/cpu/sc520/Makefile +++ b/arch/x86/cpu/sc520/Makefile @@ -33,6 +33,7 @@ LIB := $(obj)lib$(SOC).o COBJS-$(CONFIG_SYS_SC520) += sc520.o COBJS-$(CONFIG_PCI) += sc520_pci.o +COBJS-$(CONFIG_SYS_SC520_RESET) += sc520_reset.o COBJS-$(CONFIG_SYS_SC520) += sc520_sdram.o COBJS-$(CONFIG_SYS_SC520_SSI) += sc520_ssi.o COBJS-$(CONFIG_SYS_SC520_TIMER) += sc520_timer.o |