]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
board: ti: j721e: evm: Switch to using IS_ENABLED
authorNishanth Menon <nm@ti.com>
Sat, 4 Nov 2023 07:21:41 +0000 (02:21 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 22 Nov 2023 17:04:14 +0000 (12:04 -0500)
Switch to using IS_ENABLED() for inline function usage.

Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
board/ti/j721e/evm.c

index f7ab15f1d73a82c0d3f399ab4d6686b8825d9ee8..0768385f40c6b586faeab40070c81204970c5ee7 100644 (file)
@@ -299,53 +299,54 @@ static int probe_daughtercards(void)
                printf("Detected: %s rev %s\n", ep.name, ep.version);
                daughter_card_detect_flags[i] = true;
 
-#ifndef CONFIG_SPL_BUILD
-               int j;
-               /*
-                * Populate any MAC addresses from daughtercard into the U-Boot
-                * environment, starting with a card-specific offset so we can
-                * have multiple ext_cards contribute to the MAC pool in a well-
-                * defined manner.
-                */
-               for (j = 0; j < mac_addr_cnt; j++) {
-                       if (!is_valid_ethaddr((u8 *)mac_addr[j]))
-                               continue;
-
-                       eth_env_set_enetaddr_by_index("eth",
-                                                     ext_cards[i].eth_offset + j,
-                                                     (uchar *)mac_addr[j]);
+               if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
+                       int j;
+                       /*
+                        * Populate any MAC addresses from daughtercard into the U-Boot
+                        * environment, starting with a card-specific offset so we can
+                        * have multiple ext_cards contribute to the MAC pool in a well-
+                        * defined manner.
+                        */
+                       for (j = 0; j < mac_addr_cnt; j++) {
+                               if (!is_valid_ethaddr((u8 *)mac_addr[j]))
+                                       continue;
+
+                               eth_env_set_enetaddr_by_index("eth",
+                                                             ext_cards[i].eth_offset + j,
+                                                             (uchar *)mac_addr[j]);
+                       }
                }
-#endif
        }
-#ifndef CONFIG_SPL_BUILD
-       char name_overlays[1024] = { 0 };
 
-       for (i = 0; i < ARRAY_SIZE(ext_cards); i++) {
-               if (!daughter_card_detect_flags[i])
-                       continue;
+       if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
+               char name_overlays[1024] = { 0 };
 
-               /* Skip if no overlays are to be added */
-               if (!strlen(ext_cards[i].dtbo_name))
-                       continue;
+               for (i = 0; i < ARRAY_SIZE(ext_cards); i++) {
+                       if (!daughter_card_detect_flags[i])
+                               continue;
 
-               /*
-                * Make sure we are not running out of buffer space by checking
-                * if we can fit the new overlay, a trailing space to be used
-                * as a separator, plus the terminating zero.
-                */
-               if (strlen(name_overlays) + strlen(ext_cards[i].dtbo_name) + 2 >
-                   sizeof(name_overlays))
-                       return -ENOMEM;
-
-               /* Append to our list of overlays */
-               strcat(name_overlays, ext_cards[i].dtbo_name);
-               strcat(name_overlays, " ");
-       }
+                       /* Skip if no overlays are to be added */
+                       if (!strlen(ext_cards[i].dtbo_name))
+                               continue;
 
-       /* Apply device tree overlay(s) to the U-Boot environment, if any */
-       if (strlen(name_overlays))
-               return env_set("name_overlays", name_overlays);
-#endif
+                       /*
+                        * Make sure we are not running out of buffer space by checking
+                        * if we can fit the new overlay, a trailing space to be used
+                        * as a separator, plus the terminating zero.
+                        */
+                       if (strlen(name_overlays) + strlen(ext_cards[i].dtbo_name) + 2 >
+                           sizeof(name_overlays))
+                               return -ENOMEM;
+
+                       /* Append to our list of overlays */
+                       strcat(name_overlays, ext_cards[i].dtbo_name);
+                       strcat(name_overlays, " ");
+               }
+
+               /* Apply device tree overlay(s) to the U-Boot environment, if any */
+               if (strlen(name_overlays))
+                       return env_set("name_overlays", name_overlays);
+       }
 
        return 0;
 }