pcm052: board: vybrid: Update the board name for BK4 device

This commit provides distinction between PCM052 and BK4.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
This commit is contained in:
Lukasz Majewski 2019-02-13 22:46:45 +01:00 committed by Stefano Babic
parent fea63a5d7d
commit 5f1588acc2

View File

@ -573,7 +573,10 @@ int board_init(void)
int checkboard(void)
{
#ifdef CONFIG_TARGET_BK4R1
puts("Board: BK4r1 (L333)\n");
#else
puts("Board: PCM-052\n");
#endif
return 0;
}