Use names for output functions in the form dt_to_*() instead of

write_dt_*() for consistency with the dt_from_*() input functions.
main
David Gibson 2005-10-26 16:56:26 +10:00
parent f040d95b84
commit 712e52e438
4 changed files with 9 additions and 9 deletions

6
dtc.c
View File

@ -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
View File

@ -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 */

View File

@ -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;

View File

@ -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;