diff options
| author | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 | 
| commit | eedcd078fe1434d93b84322c4e14c52f80282a41 (patch) | |
| tree | 0dd7b16045dd41fbda926f929f1d7cf8edbd2ae0 /post/memory.c | |
| parent | 7ca202f566a6e9dc3d0dd0216e82ad1a48f50f19 (diff) | |
| download | olio-uboot-2014.01-eedcd078fe1434d93b84322c4e14c52f80282a41.tar.xz olio-uboot-2014.01-eedcd078fe1434d93b84322c4e14c52f80282a41.zip | |
* Patch by Detlev Zundel, 08 Sep 2004:LABEL_2004_09_09_0000
  Update etags build target
* Improve NetConsole support: add support for broadcast destination
  address and buffered input.
* Cleanup compiler warnings for GCC 3.3.x and later
* Fix problem in cmd_jffs2.c introduced by CFG_JFFS_SINGLE_PART patch
Diffstat (limited to 'post/memory.c')
| -rw-r--r-- | post/memory.c | 27 | 
1 files changed, 14 insertions, 13 deletions
| diff --git a/post/memory.c b/post/memory.c index 8b4263161..0dac858ea 100644 --- a/post/memory.c +++ b/post/memory.c @@ -206,19 +206,20 @@ static void move64(unsigned long long *src, unsigned long long *dest)   *   */  const static unsigned long long pattern[] = { -    0xaaaaaaaaaaaaaaaa, -    0xcccccccccccccccc, -    0xf0f0f0f0f0f0f0f0, -    0xff00ff00ff00ff00, -    0xffff0000ffff0000, -    0xffffffff00000000, -    0x00000000ffffffff, -    0x0000ffff0000ffff, -    0x00ff00ff00ff00ff, -    0x0f0f0f0f0f0f0f0f, -    0x3333333333333333, -    0x5555555555555555}; -const unsigned long long otherpattern = 0x0123456789abcdef; +	0xaaaaaaaaaaaaaaaaULL, +	0xccccccccccccccccULL, +	0xf0f0f0f0f0f0f0f0ULL, +	0xff00ff00ff00ff00ULL, +	0xffff0000ffff0000ULL, +	0xffffffff00000000ULL, +	0x00000000ffffffffULL, +	0x0000ffff0000ffffULL, +	0x00ff00ff00ff00ffULL, +	0x0f0f0f0f0f0f0f0fULL, +	0x3333333333333333ULL, +	0x5555555555555555ULL +}; +const unsigned long long otherpattern = 0x0123456789abcdefULL;  static int memory_post_dataline(unsigned long long * pmem) |