]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
init.h: Add "struct cmd_tbl"
authorTom Rini <trini@konsulko.com>
Sat, 27 Apr 2024 14:10:49 +0000 (08:10 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 6 May 2024 21:05:03 +0000 (15:05 -0600)
In order to avoid needing to add <command.h> to this file, add "struct
cmd_tbl" before the prototype for do_bdinfo().

Signed-off-by: Tom Rini <trini@konsulko.com>
include/init.h

index 630d86729c4e3df102a364c027a8e92b061bb69c..2c10171359cf36b3baa0e015643459e14038e2d1 100644 (file)
@@ -401,6 +401,8 @@ void bdinfo_print_size(const char *name, uint64_t size);
 /* Show arch-specific information for the 'bd' command */
 void arch_print_bdinfo(void);
 
+struct cmd_tbl;
+
 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
 
 #endif /* __ASSEMBLY__ */