]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
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 71af1ae7c8998b781e32f58b4770f950c89bc3d1..6197076d04fa219a7dd3895b9e712109e2c6fc50 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;
 }