From 712e52e4386295c6ae9570721c4c91965d747b08 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Wed, 26 Oct 2005 16:56:26 +1000 Subject: Use names for output functions in the form dt_to_*() instead of write_dt_*() for consistency with the dt_from_*() input functions. --- dtc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dtc.h') diff --git a/dtc.h b/dtc.h index e9c473a..be17ad6 100644 --- a/dtc.h +++ b/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 */ -- cgit v1.2.1