]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Update header file and enable icache
authorTsiChungLiew <Tsi-Chung.Liew@freescale.com>
Fri, 6 Jul 2007 04:03:28 +0000 (23:03 -0500)
committerJohn Rigby <jrigby@freescale.com>
Tue, 10 Jul 2007 20:29:09 +0000 (14:29 -0600)
Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().

Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
cpu/mcf532x/cpu_init.c

index 6319658c06bb6df3f0477302a99b4756c94de399..b056fbe310f255e3931a9278b3d53180dbe96236 100644 (file)
@@ -3,7 +3,7 @@
  * (C) Copyright 2000-2003
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  *
- * (C) Copyright 2007
+ * (C) Copyright 2007 Freescale Semiconductor, Inc.
  * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
  *
  * See file CREDITS for list of people who contributed to this
@@ -28,8 +28,7 @@
 #include <common.h>
 #include <watchdog.h>
 
-#include <asm/m5329.h>
-#include <asm/immap_5329.h>
+#include <asm/immap.h>
 
 /*
  * Breath some life into the CPU...
@@ -121,6 +120,6 @@ void cpu_init_f(void)
  */
 int cpu_init_r(void)
 {
-       /*icache_enable(); */
+       icache_enable();
        return (0);
 }