mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
command: Remove the cmd_tbl_t typedef
We should not use typedefs in U-Boot. They cannot be used as forward declarations which means that header files must include the full header to access them. Drop the typedef and rename the struct to remove the _s suffix which is now not useful. This requires quite a few header-file additions. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
17
cmd/mtd.c
17
cmd/mtd.c
@@ -195,8 +195,8 @@ static bool mtd_oob_write_is_empty(struct mtd_oob_ops *op)
|
||||
return true;
|
||||
}
|
||||
|
||||
static int do_mtd_list(cmd_tbl_t *cmdtp, int flag, int argc,
|
||||
char * const argv[])
|
||||
static int do_mtd_list(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||
char *const argv[])
|
||||
{
|
||||
struct mtd_info *mtd;
|
||||
int dev_nb = 0;
|
||||
@@ -240,7 +240,8 @@ static int mtd_special_write_oob(struct mtd_info *mtd, u64 off,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int do_mtd_io(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||
static int do_mtd_io(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||
char *const argv[])
|
||||
{
|
||||
bool dump, read, raw, woob, write_empty_pages, has_pages = false;
|
||||
u64 start_off, off, len, remaining, default_len;
|
||||
@@ -382,8 +383,8 @@ out_put_mtd:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int do_mtd_erase(cmd_tbl_t *cmdtp, int flag, int argc,
|
||||
char * const argv[])
|
||||
static int do_mtd_erase(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||
char *const argv[])
|
||||
{
|
||||
struct erase_info erase_op = {};
|
||||
struct mtd_info *mtd;
|
||||
@@ -454,8 +455,8 @@ out_put_mtd:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int do_mtd_bad(cmd_tbl_t *cmdtp, int flag, int argc,
|
||||
char * const argv[])
|
||||
static int do_mtd_bad(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||
char *const argv[])
|
||||
{
|
||||
struct mtd_info *mtd;
|
||||
loff_t off;
|
||||
@@ -485,7 +486,7 @@ out_put_mtd:
|
||||
}
|
||||
|
||||
#ifdef CONFIG_AUTO_COMPLETE
|
||||
static int mtd_name_complete(int argc, char * const argv[], char last_char,
|
||||
static int mtd_name_complete(int argc, char *const argv[], char last_char,
|
||||
int maxv, char *cmdv[])
|
||||
{
|
||||
int len = 0, n_found = 0;
|
||||
|
Reference in New Issue
Block a user