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:
909ea9a
)
board: ti: am43xx: print unsupported board name
author
Felipe Balbi
<balbi@ti.com>
Tue, 10 Jun 2014 20:01:18 +0000
(15:01 -0500)
committer
Tom Rini
<trini@ti.com>
Thu, 19 Jun 2014 21:53:58 +0000
(17:53 -0400)
when porting u-boot to a new am43xx board, it
helps to know the name of the current unsupported
board so we don't have to hunt for design documents
to figure out what's written in the EEPROM.
Signed-off-by: Felipe Balbi <balbi@ti.com>
board/ti/am43xx/board.c
patch
|
blob
|
history
diff --git
a/board/ti/am43xx/board.c
b/board/ti/am43xx/board.c
index 71af1ae7c8998b781e32f58b4770f950c89bc3d1..6197076d04fa219a7dd3895b9e712109e2c6fc50 100644
(file)
--- a/
board/ti/am43xx/board.c
+++ b/
board/ti/am43xx/board.c
@@
-260,7
+260,7
@@
const struct dpll_params *get_dpll_ddr_params(void)
else if (board_is_gpevm())
return &gp_evm_dpll_ddr;
- p
uts(" Board not supported\n"
);
+ p
rintf(" Board '%s' not supported\n", am43xx_board_name
);
return NULL;
}