]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
rockchip: board: Move gpt_capsule_update_setup() call
authorJonas Karlman <jonas@kwiboo.se>
Tue, 12 Mar 2024 23:36:22 +0000 (23:36 +0000)
committerKever Yang <kever.yang@rock-chips.com>
Thu, 14 Mar 2024 10:19:28 +0000 (18:19 +0800)
Move the call to gpt_capsule_update_setup() from the weak function
rk_board_late_init() into the main board_late_init() function.

Also change to use IS_ENABLED() instead for defined().

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
arch/arm/mach-rockchip/board.c

index 31a11110f44070205604f6ccdf692cb9eb799d15..e9cfba7566393c1fad5ae0797e5ce54214728179 100644 (file)
@@ -34,7 +34,7 @@
 #include <asm/arch-rockchip/periph.h>
 #include <power/regulator.h>
 
-#if defined(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && defined(CONFIG_EFI_PARTITION)
+#if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && IS_ENABLED(CONFIG_EFI_PARTITION)
 
 #define DFU_ALT_BUF_LEN                        SZ_1K
 
@@ -185,10 +185,6 @@ static void gpt_capsule_update_setup(void)
 
 __weak int rk_board_late_init(void)
 {
-#if defined(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && defined(CONFIG_EFI_PARTITION)
-       gpt_capsule_update_setup();
-#endif
-
        return 0;
 }
 
@@ -196,6 +192,10 @@ int board_late_init(void)
 {
        setup_boot_mode();
 
+#if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && IS_ENABLED(CONFIG_EFI_PARTITION)
+       gpt_capsule_update_setup();
+#endif
+
        return rk_board_late_init();
 }