projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fb6c4f
)
API: Only output test data when reading was successful.
author
Rafal Jaworowski
<raj@semihalf.com>
Fri, 23 Jan 2009 12:27:17 +0000
(13:27 +0100)
committer
Wolfgang Denk
<wd@denx.de>
Tue, 17 Feb 2009 23:39:43 +0000
(
00:39
+0100)
Signed-off-by: Rafal Czubak <rcz@semihalf.com>
api_examples/demo.c
patch
|
blob
|
history
diff --git
a/api_examples/demo.c
b/api_examples/demo.c
index 69ac318375a7c2afc6b94eed97f140c05ccce66c..2510ed8866d77c09816cb1351604e4c41dfa04a2 100644
(file)
--- a/
api_examples/demo.c
+++ b/
api_examples/demo.c
@@
-135,9
+135,10
@@
int main(int argc, char *argv[])
else if ((rv = ub_dev_read(i, buf, 1, 0)) != 0)
errf("could not read from device %d, error %d\n", i, rv);
-
- printf("Sector 0 dump (512B):\n");
- test_dump_buf(buf, 512);
+ else {
+ printf("Sector 0 dump (512B):\n");
+ test_dump_buf(buf, 512);
+ }
ub_dev_close(i);
}
@@
-178,6
+179,7
@@
int main(int argc, char *argv[])
printf("%s = %s\n", env, ub_env_get(env));
/* reset */
+ printf("\n*** Resetting board ***\n");
ub_reset();
printf("\nHmm, reset returned...?!\n");