Merge tag 'imx8qxp-fixes' of https://gitlab.denx.de/u-boot/custodians/u-boot-video
[oweals/u-boot.git] / cmd / trace.c
index 7d328f88be518f64ecf60da928d90bdac8ebe4fc..4ce47c7627607a9721baed61e9c45fb9b160c13f 100644 (file)
@@ -5,11 +5,12 @@
 
 #include <common.h>
 #include <command.h>
+#include <env.h>
 #include <mapmem.h>
 #include <trace.h>
 #include <asm/io.h>
 
-static int get_args(int argc, char * const argv[], char **buff,
+static int get_args(int argc, char *const argv[], char **buff,
                    size_t *buff_ptr, size_t *buff_size)
 {
        if (argc < 2)
@@ -28,7 +29,7 @@ static int get_args(int argc, char * const argv[], char **buff,
        return 0;
 }
 
-static int create_func_list(int argc, char * const argv[])
+static int create_func_list(int argc, char *const argv[])
 {
        size_t buff_size, avail, buff_ptr, needed, used;
        char *buff;
@@ -51,7 +52,7 @@ static int create_func_list(int argc, char * const argv[])
        return 0;
 }
 
-static int create_call_list(int argc, char * const argv[])
+static int create_call_list(int argc, char *const argv[])
 {
        size_t buff_size, avail, buff_ptr, needed, used;
        char *buff;
@@ -75,7 +76,7 @@ static int create_call_list(int argc, char * const argv[])
        return 0;
 }
 
-int do_trace(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+int do_trace(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 {
        const char *cmd = argc < 2 ? NULL : argv[1];