diff options
author | Felipe Balbi <balbi@ti.com> | 2014-06-10 15:01:18 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-19 17:53:58 -0400 |
commit | d51e5aeff64d5ca248ba013e940b22b8273f4e47 (patch) | |
tree | f25645469e57364b4a4489ec0f6bc12fc4ceab50 /board | |
parent | 909ea9aa264423c99cd3039475c98f4a069cb7a4 (diff) | |
download | u-boot-imx-d51e5aeff64d5ca248ba013e940b22b8273f4e47.zip u-boot-imx-d51e5aeff64d5ca248ba013e940b22b8273f4e47.tar.gz u-boot-imx-d51e5aeff64d5ca248ba013e940b22b8273f4e47.tar.bz2 |
board: ti: am43xx: print unsupported board name
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>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/am43xx/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index 71af1ae..6197076 100644 --- 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; - puts(" Board not supported\n"); + printf(" Board '%s' not supported\n", am43xx_board_name); return NULL; } |