]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: sunxi: Correct warning in board_fit_config_name_match
authorTom Rini <trini@konsulko.com>
Mon, 17 Jul 2023 19:29:20 +0000 (15:29 -0400)
committerAndre Przywara <andre.przywara@arm.com>
Sun, 12 Nov 2023 12:03:42 +0000 (12:03 +0000)
When building this with clang, we get a warning about having excess
parenthesis here, or that we're incorrectly using "==" when we want "=".
Correct these by using the common size macro.

Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
[Andre: Use SZ_512M as per Simon's suggestion]
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
board/sunxi/board.c

index 02fc3eef0030828d66c9ed65abd73230847bd293..80589f96402b73570b14bcf0936791f2fd57d2a7 100644 (file)
@@ -34,6 +34,7 @@
 #include <asm/global_data.h>
 #include <linux/delay.h>
 #include <linux/printk.h>
+#include <linux/types.h>
 #ifndef CONFIG_ARM64
 #include <asm/armv7.h>
 #endif
@@ -937,7 +938,7 @@ int board_fit_config_name_match(const char *name)
 #ifdef CONFIG_PINE64_DT_SELECTION
        if (strstr(best_dt_name, "-pine64-plus")) {
                /* Differentiate the Pine A64 boards by their DRAM size. */
-               if ((gd->ram_size == 512 * 1024 * 1024))
+               if (gd->ram_size == SZ_512M)
                        best_dt_name = "sun50i-a64-pine64";
        }
 #endif