pcm052: board: vybrid: Update the board name for BK4 device
authorLukasz Majewski <lukma@denx.de>
Wed, 13 Feb 2019 21:46:45 +0000 (22:46 +0100)
committerStefano Babic <sbabic@denx.de>
Sat, 13 Apr 2019 18:30:08 +0000 (20:30 +0200)
This commit provides distinction between PCM052 and BK4.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
board/phytec/pcm052/pcm052.c

index 4e4b8703044d6751c9838924c8516bf34ce07a78..5f2c9a9c128f76e69da1889e50d60aec121d49b2 100644 (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;
 }