From: Lukasz Majewski Date: Wed, 13 Feb 2019 21:46:45 +0000 (+0100) Subject: pcm052: board: vybrid: Update the board name for BK4 device X-Git-Tag: v2019.07-rc1~21^2~132 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f1588acc2a2888c7932a7ef2080497cd8174059;p=platform%2Fkernel%2Fu-boot.git pcm052: board: vybrid: Update the board name for BK4 device This commit provides distinction between PCM052 and BK4. Signed-off-by: Lukasz Majewski --- diff --git a/board/phytec/pcm052/pcm052.c b/board/phytec/pcm052/pcm052.c index 4e4b870..5f2c9a9 100644 --- a/board/phytec/pcm052/pcm052.c +++ b/board/phytec/pcm052/pcm052.c @@ -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; }