]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mx6sabresd: Make checkboard respect CONFIG_NXP_BOARD_REVISION
authorCody Gray <cody@codygray.com>
Sun, 27 Jun 2021 05:15:22 +0000 (22:15 -0700)
committerStefano Babic <sbabic@denx.de>
Sat, 10 Jul 2021 16:14:25 +0000 (18:14 +0200)
The default implementation of checkboard() calls the
nxp_board_rev_string() function
to retrieve a character representing the revision number of the board.
However, this
attempt to retrieve the revision number may fail in certain situations or be
otherwise undesirable.

There is already a configuration option to avoid retrieving the
revision number of
the board: CONFIG_NXP_BOARD_REVISION. In fact, if this option is enabled, the
nxp_board_rev_string() function's definition will be omitted entirely,
meaning that the previous implementation of checkboard() would result
in a linker error.

This changeset makes the default implementation of checkboard() respect the
CONFIG_NXP_BOARD_REVISION configuration option, only attempting to retrieve
the board revision number if that option is defined.

Signed-off-by: Cody Gray <cody@codygray.com>
board/freescale/mx6sxsabresd/mx6sxsabresd.c

index 57fab23864156b07cf0d70c8ca4d65a846ddbaf2..e7958df40243977237225cfe9b4debf21de03227 100644 (file)
@@ -320,7 +320,10 @@ int board_late_init(void)
 
 int checkboard(void)
 {
+#ifdef CONFIG_NXP_BOARD_REVISION
        printf("Board: MX6SX SABRE SDB rev%c\n", nxp_board_rev_string());
-
+#else
+       puts("Board: MX6SX SABRE SDB");
+#endif
        return 0;
 }