]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
board: freescale: p1_p2_rdb_pc: Allow to compile without __SW_BOOT_SD macro
authorPali Rohár <pali@kernel.org>
Thu, 23 Jun 2022 13:25:36 +0000 (15:25 +0200)
committerPeng Fan <peng.fan@nxp.com>
Sun, 3 Jul 2022 07:13:51 +0000 (15:13 +0800)
Add #ifdef guard for __SW_BOOT_SD macro like there are guards for all other
__SW_BOOT_* macros.

Signed-off-by: Pali Rohár <pali@kernel.org>
board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c

index 949fe170ffd290067c34fdc8833d807de3cb2679..56bc355d2194ca3ab9ead62bb76e95c43ab4cd6d 100644 (file)
@@ -228,8 +228,11 @@ int checkboard(void)
        val = (in & io_config) | (out & (~io_config));
 
        puts("rom_loc: ");
-       if ((val & (~__SW_BOOT_MASK)) == __SW_BOOT_SD) {
+       if (0) {
+#ifdef __SW_BOOT_SD
+       } else if ((val & (~__SW_BOOT_MASK)) == __SW_BOOT_SD) {
                puts("sd");
+#endif
 #ifdef __SW_BOOT_SD2
        } else if ((val & (~__SW_BOOT_MASK)) == __SW_BOOT_SD2) {
                puts("sd");