diff mbox series

[v2,1/4] xilinx: common: Include header file to fix warning

Message ID 20230120053617.32463-2-ashok.reddy.soma@amd.com
State Accepted
Commit fb737f1ed86c87a64e6626975cf51dd70a405cd2
Delegated to: Michal Simek
Headers show
Series Fix sparse warnings | expand

Commit Message

Ashok Reddy Soma Jan. 20, 2023, 5:36 a.m. UTC
From: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>

Prototype is missing for board_get_usable_ram_top, which is pointed by
below sparse warning. Include init.h header file to fix this.

warning: no previous prototype for 'board_get_usable_ram_top'
[-Wmissing-prototypes].

Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@amd.com>
---

Changes in v2:
 - Included header file instead of declaring prototype
 - Modified description to reflect the same

 board/xilinx/common/board.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/board/xilinx/common/board.c b/board/xilinx/common/board.c
index 59d87f2352..a5bd289776 100644
--- a/board/xilinx/common/board.c
+++ b/board/xilinx/common/board.c
@@ -9,6 +9,7 @@ 
 #include <efi_loader.h>
 #include <env.h>
 #include <image.h>
+#include <init.h>
 #include <lmb.h>
 #include <log.h>
 #include <asm/global_data.h>