aboutsummaryrefslogtreecommitdiffstats
path: root/post
diff options
context:
space:
mode:
authorMasahiro Yamada2014-12-15 08:26:31 -0600
committerTom Rini2015-01-05 11:08:55 -0600
commitd622ac39274a949b6445f1bfd92dc1644014388b (patch)
treef2f2f587edee722bf5fb6634e4c8e09b9d89592c /post
parent9067b30008e4c09fb6287d306caf2a6bed08370f (diff)
downloadu-boot-d622ac39274a949b6445f1bfd92dc1644014388b.tar.gz
u-boot-d622ac39274a949b6445f1bfd92dc1644014388b.tar.xz
u-boot-d622ac39274a949b6445f1bfd92dc1644014388b.zip
powerpc: mpc824x: remove MPC824X cpu support
All the MPC824X boards are still non-generic boards: A3000, CPC45, CU824, eXalion, MVBLUE, MUSENKI, Sandpoint824x, utx8245 Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Josef Wagner <Wagner@Microsys.de> Cc: Torsten Demke <torsten.demke@fci.com> Cc: Jim Thompson <jim@musenki.com> Cc: Greg Allen <gallen@arlut.utexas.edu>
Diffstat (limited to 'post')
-rw-r--r--post/drivers/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/post/drivers/memory.c b/post/drivers/memory.c
index d94a437440..d512fa5c08 100644
--- a/post/drivers/memory.c
+++ b/post/drivers/memory.c
@@ -170,7 +170,7 @@ DECLARE_GLOBAL_DATA_PTR;
170 */ 170 */
171static void move64(const unsigned long long *src, unsigned long long *dest) 171static void move64(const unsigned long long *src, unsigned long long *dest)
172{ 172{
173#if defined(CONFIG_MPC8260) || defined(CONFIG_MPC824X) 173#if defined(CONFIG_MPC8260)
174 asm ("lfd 0, 0(3)\n\t" /* fpr0 = *scr */ 174 asm ("lfd 0, 0(3)\n\t" /* fpr0 = *scr */
175 "stfd 0, 0(4)" /* *dest = fpr0 */ 175 "stfd 0, 0(4)" /* *dest = fpr0 */
176 : : : "fr0" ); /* Clobbers fr0 */ 176 : : : "fr0" ); /* Clobbers fr0 */