diff options
Diffstat (limited to 'common/cli.c')
-rw-r--r-- | common/cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cli.c b/common/cli.c index e5e5894b2fa..6635ab2bcf8 100644 --- a/common/cli.c +++ b/common/cli.c @@ -129,7 +129,7 @@ int run_command_list(const char *cmd, int len, int flag) /****************************************************************************/ #if defined(CONFIG_CMD_RUN) -int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +int do_run(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { int i; @@ -183,7 +183,7 @@ bool cli_process_fdt(const char **cmdp) void cli_secure_boot_cmd(const char *cmd) { #ifdef CONFIG_CMDLINE - cmd_tbl_t *cmdtp; + struct cmd_tbl *cmdtp; #endif int rc; |