command: Remove the cmd_tbl_t typedef
[oweals/u-boot.git] / test / command_ut.c
index 8e268e5ee523af975e4aa5836b09b903c2f24e41..d6e6777bd42d3547ac3ad85c91b2c0306a7e1e4d 100644 (file)
@@ -7,12 +7,14 @@
 
 #include <common.h>
 #include <command.h>
+#include <env.h>
 
 static const char test_cmd[] = "setenv list 1\n setenv list ${list}2; "
                "setenv list ${list}3\0"
                "setenv list ${list}4";
 
-static int do_ut_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+static int do_ut_cmd(struct cmd_tbl *cmdtp, int flag, int argc,
+                    char *const argv[])
 {
        printf("%s: Testing commands\n", __func__);
        run_command("env default -f -a", 0);