git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c33a38
)
Make code better readable.
author
Wolfgang Denk
<wd@pollux.denx.de>
Fri, 21 Jul 2006 09:37:40 +0000
(11:37 +0200)
committer
Wolfgang Denk
<wd@pollux.denx.de>
Fri, 21 Jul 2006 09:37:40 +0000
(11:37 +0200)
Patch by Ladislav Michl, 14 Sep 2005
CHANGELOG
patch
|
blob
|
history
common/cmd_mem.c
patch
|
blob
|
history
diff --git
a/CHANGELOG
b/CHANGELOG
index
2cc55ae
..
b55f912
100644
(file)
--- a/
CHANGELOG
+++ b/
CHANGELOG
@@
-2,6
+2,9
@@
Changes since U-Boot 1.1.4:
======================================================================
+* Make code better readable.
+ Patch by Ladislav Michl, 14 Sep 2005
+
* Enable initrd ATAG for xm250 board.
Patch by Josef Wagner, 05 Sep 2005
diff --git
a/common/cmd_mem.c
b/common/cmd_mem.c
index
0f4f9b7
..
d0fae6b
100644
(file)
--- a/
common/cmd_mem.c
+++ b/
common/cmd_mem.c
@@
-707,7
+707,7
@@
int do_mem_mtest (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
#if defined(CFG_MEMTEST_SCRATCH)
vu_long *dummy = (vu_long*)CFG_MEMTEST_SCRATCH;
#else
- vu_long *dummy =
NULL;
+ vu_long *dummy =
0; /* yes, this is address 0x0, not NULL */
#endif
int j;
int iterations = 1;