summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlgapally Santosh Sagar <[email protected]>2023-01-19 22:36:14 -0700
committerMichal Simek <[email protected]>2023-01-27 08:42:47 +0100
commitfb737f1ed86c87a64e6626975cf51dd70a405cd2 (patch)
tree08cf2ea908f5685c6a7a718e15f2ea011480565d
parentcd04c959267500ca7011e94de9218547ab4ca910 (diff)
xilinx: common: Include header file to fix warning
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 <[email protected]> Signed-off-by: Ashok Reddy Soma <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Michal Simek <[email protected]>
-rw-r--r--board/xilinx/common/board.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/xilinx/common/board.c b/board/xilinx/common/board.c
index 823d703ea93..52a38147ed2 100644
--- a/board/xilinx/common/board.c
+++ b/board/xilinx/common/board.c
@@ -11,6 +11,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>