projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8be429a
)
Fix bug in 8641hpcn reset command with no args.
author
Jon Loeliger
<jdl@freescale.com>
Thu, 22 Jun 2006 13:51:46 +0000
(08:51 -0500)
committer
Jon Loeliger
<jdl@freescale.com>
Thu, 22 Jun 2006 13:51:46 +0000
(08:51 -0500)
Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
Acked-by: Jon Loeliger <jdl@freescale.com>
board/mpc8641hpcn/mpc8641hpcn.c
patch
|
blob
|
history
diff --git
a/board/mpc8641hpcn/mpc8641hpcn.c
b/board/mpc8641hpcn/mpc8641hpcn.c
index c6b2a5b3bf9dd85d514b637ef54894bff3a8b96d..2626cccb93c4238235d6a4a3419b0f61f0096efe 100644
(file)
--- a/
board/mpc8641hpcn/mpc8641hpcn.c
+++ b/
board/mpc8641hpcn/mpc8641hpcn.c
@@
-269,7
+269,7
@@
mpc8641_reset_board(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
/*
* No args is a simple reset request.
*/
- if (arg
v <= 0
) {
+ if (arg
c <= 1
) {
out8(PIXIS_BASE + PIXIS_RST, 0);
/* not reached */
}