diff mbox

[v2,1/5] board: ti: am43xx: print unsupported board name

Message ID 1402430482-2676-2-git-send-email-balbi@ti.com
State Accepted
Commit d51e5aeff64d5ca248ba013e940b22b8273f4e47
Headers show

Commit Message

Felipe Balbi June 10, 2014, 8:01 p.m. UTC
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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini June 19, 2014, 10:02 p.m. UTC | #1
On Tue, Jun 10, 2014 at 03:01:18PM -0500, Felipe Balbi wrote:

> 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>

Applied to u-boot-ti/master, thanks!
diff mbox

Patch

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;
 }