Use names for output functions in the form dt_to_*() instead of
write_dt_*() for consistency with the dt_from_*() input functions.main
parent
f040d95b84
commit
712e52e438
6
dtc.c
6
dtc.c
|
@ -183,11 +183,11 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
if (streq(outform, "dts")) {
|
||||
write_tree_source(outf, bi);
|
||||
dt_to_source(outf, bi);
|
||||
} else if (streq(outform, "dtb")) {
|
||||
write_dt_blob(outf, bi, outversion);
|
||||
dt_to_blob(outf, bi, outversion);
|
||||
} else if (streq(outform, "asm")) {
|
||||
write_dt_asm(outf, bi, outversion);
|
||||
dt_to_asm(outf, bi, outversion);
|
||||
} else if (streq(outform, "null")) {
|
||||
/* do nothing */
|
||||
} else {
|
||||
|
|
6
dtc.h
6
dtc.h
|
@ -208,14 +208,14 @@ struct boot_info *build_boot_info(struct reserve_info *reservelist,
|
|||
|
||||
/* Flattened trees */
|
||||
|
||||
void write_dt_blob(FILE *f, struct boot_info *bi, int version);
|
||||
void write_dt_asm(FILE *f, struct boot_info *bi, int version);
|
||||
void dt_to_blob(FILE *f, struct boot_info *bi, int version);
|
||||
void dt_to_asm(FILE *f, struct boot_info *bi, int version);
|
||||
|
||||
struct boot_info *dt_from_blob(FILE *f);
|
||||
|
||||
/* Tree source */
|
||||
|
||||
void write_tree_source(FILE *f, struct boot_info *bi);
|
||||
void dt_to_source(FILE *f, struct boot_info *bi);
|
||||
struct boot_info *dt_from_source(FILE *f);
|
||||
|
||||
/* FS trees */
|
||||
|
|
|
@ -329,7 +329,7 @@ static void make_bph(struct boot_param_header *bph,
|
|||
bph->size_dt_strings = cpu_to_be32(strsize);
|
||||
}
|
||||
|
||||
void write_dt_blob(FILE *f, struct boot_info *bi, int version)
|
||||
void dt_to_blob(FILE *f, struct boot_info *bi, int version)
|
||||
{
|
||||
struct version_info *vi = NULL;
|
||||
int i;
|
||||
|
@ -397,7 +397,7 @@ static void dump_stringtable_asm(FILE *f, struct data strbuf)
|
|||
}
|
||||
}
|
||||
|
||||
void write_dt_asm(FILE *f, struct boot_info *bi, int version)
|
||||
void dt_to_asm(FILE *f, struct boot_info *bi, int version)
|
||||
{
|
||||
struct version_info *vi = NULL;
|
||||
int i;
|
||||
|
|
|
@ -144,7 +144,7 @@ static void write_tree_source_node(FILE *f, struct node *tree, int level)
|
|||
}
|
||||
|
||||
|
||||
void write_tree_source(FILE *f, struct boot_info *bi)
|
||||
void dt_to_source(FILE *f, struct boot_info *bi)
|
||||
{
|
||||
struct reserve_info *re;
|
||||
|
||||
|
|
Loading…
Reference in New Issue