command: Remove the cmd_tbl_t typedef
[oweals/u-boot.git] / cmd / x86 / exception.c
index ade1e2ea926246a9fb4800070d9510572c0c05d5..82faaa913e5c60c51fc33bfe5630282266c64f89 100644 (file)
@@ -8,14 +8,14 @@
 #include <common.h>
 #include <command.h>
 
-static int do_undefined(cmd_tbl_t *cmdtp, int flag, int argc,
-                       char * const argv[])
+static int do_undefined(struct cmd_tbl *cmdtp, int flag, int argc,
+                       char *const argv[])
 {
        asm volatile (".word 0xffff\n");
        return CMD_RET_FAILURE;
 }
 
-static cmd_tbl_t cmd_sub[] = {
+static struct cmd_tbl cmd_sub[] = {
        U_BOOT_CMD_MKENT(undefined, CONFIG_SYS_MAXARGS, 1, do_undefined,
                         "", ""),
 };