[U-Boot] [PATCH 3/3 v2] fsl_dma: Fix SDRAM initial value
Peter Tyser
ptyser at xes-inc.com
Thu Jul 9 02:11:49 CEST 2009
The initial SDRAM value was being hardcoded to CONFIG_MEM_INIT_VALUE
instead of the value passed in 'val'.
Signed-off-by: Peter Tyser <ptyser at xes-inc.com>
---
drivers/dma/fsl_dma.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/dma/fsl_dma.c b/drivers/dma/fsl_dma.c
index 90a96dd..9ad07fe 100644
--- a/drivers/dma/fsl_dma.c
+++ b/drivers/dma/fsl_dma.c
@@ -157,7 +157,7 @@ void dma_meminit(uint val, uint size)
if (((uint)p & 0x1f) == 0)
ppcDcbz((ulong)p);
- *p = (uint)CONFIG_MEM_INIT_VALUE;
+ *p = val;
if (((uint)p & 0x1c) == 0x1c)
ppcDcbf((ulong)p);
--
1.6.2.1
More information about the U-Boot
mailing list