summaryrefslogtreecommitdiff
path: root/examples/test_burst.c
diff options
context:
space:
mode:
authorMarkus Klotzbuecher <mk@denx.de>2008-07-10 16:03:26 +0200
committerMarkus Klotzbuecher <mk@denx.de>2008-07-10 16:03:26 +0200
commit262423955895ba4599fa11d7c49dcffb65af0afd (patch)
tree59d35abf0b661bef68018e2137c174db0309bc22 /examples/test_burst.c
parent794a5924972fc8073616e98a2668da4a5f9aea90 (diff)
parente0320b1ebec13755911a53b0af12cbf3e5e49a65 (diff)
Merge branch 'master' of git://www.denx.de/git/u-boot
Diffstat (limited to 'examples/test_burst.c')
-rw-r--r--examples/test_burst.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/test_burst.c b/examples/test_burst.c
index f09707ff90..3157bc8b00 100644
--- a/examples/test_burst.c
+++ b/examples/test_burst.c
@@ -173,7 +173,7 @@ static int test_burst_start (unsigned long size, unsigned long pattern)
int i, n;
int res = 1;
- printf ("Test pattern %08x ...", pattern);
+ printf ("Test pattern %08lx ...", pattern);
n = size / 4;
@@ -248,7 +248,7 @@ static void test_desc(unsigned long size)
{
printf(
"The following tests will be conducted:\n"
- "1) Map %d-byte region of physical RAM at 0x%08x\n"
+ "1) Map %ld-byte region of physical RAM at 0x%08x\n"
" into two virtual regions:\n"
" one cached at 0x%08x and\n"
" the the other uncached at 0x%08x.\n",
@@ -277,8 +277,8 @@ static void test_error(
p[1] = val;
p[2] = pattern;
- printf ("\nError at step %s, addr %08x: read %08x, pattern %08x",
- step, addr, val, pattern);
+ printf ("\nError at step %s, addr %08lx: read %08lx, pattern %08lx",
+ (unsigned long)step, addr, val, pattern);
}
static void signal_init(void)