aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/cpu/sc520/sc520.c
diff options
context:
space:
mode:
authorGraeme Russ <graeme.russ@gmail.com>2011-04-13 19:43:29 +1000
committerGraeme Russ <graeme.russ@gmail.com>2011-04-13 19:43:29 +1000
commitb7af5831850ca238c60f50304490f4ec6270af0c (patch)
tree1baf33f6e3dc340aa55133ca65b8670bd7926b6f /arch/x86/cpu/sc520/sc520.c
parentfea25720013f84427a0ba8833a38614fcaf488ba (diff)
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/sc520.c')
-rw-r--r--arch/x86/cpu/sc520/sc520.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/x86/cpu/sc520/sc520.c b/arch/x86/cpu/sc520/sc520.c
index edc1a5c0f..8c410a233 100644
--- a/arch/x86/cpu/sc520/sc520.c
+++ b/arch/x86/cpu/sc520/sc520.c
@@ -65,13 +65,3 @@ int cpu_init_r(void)
return x86_cpu_init_r();
}
-#ifdef CONFIG_SYS_SC520_RESET
-void reset_cpu(ulong addr)
-{
- printf("Resetting using SC520 MMCR\n");
- /* Write a '1' to the SYS_RST of the RESCFG MMCR */
- writeb(0x01, &sc520_mmcr->rescfg);
-
- /* NOTREACHED */
-}
-#endif