board: ti: am43xx: print unsupported board name
authorFelipe Balbi <balbi@ti.com>
Tue, 10 Jun 2014 20:01:18 +0000 (15:01 -0500)
committerTom 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

index 71af1ae..6197076 100644 (file)
@@ -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;
 }