command: Remove the cmd_tbl_t typedef
[oweals/u-boot.git] / cmd / boot.c
index 9150fce80b412d6faa6301e41a0b4f23e2bd263d..36aba22b301b57fcdc60b896c4144595cd39fd66 100644 (file)
 /* Allow ports to override the default behavior */
 __attribute__((weak))
 unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
-                                char * const argv[])
+                                char *const argv[])
 {
        return entry (argc, argv);
 }
 
-static int do_go(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+static int do_go(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 {
        ulong   addr, rc;
        int     rcode = 0;