diff options
author | Simon Glass | 2022-05-08 04:39:19 -0600 |
---|---|---|
committer | Simon Glass | 2022-06-28 03:09:52 +0100 |
commit | 1452870404804210db1d797ec046e24a99c101bf (patch) | |
tree | 4d74f730b71202a9a96c5a5d7185f51904cc5b1c /include/dm/util.h | |
parent | 06d590844f3560facdaeba728148e8db0fdbb023 (diff) |
dm: core: Rename dm_dump_all()
This is not a good name anymore as it does not dump everything. Rename it
to dm_dump_tree() to avoid confusion.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/util.h')
-rw-r--r-- | include/dm/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/util.h b/include/dm/util.h index 4428f045b72..c52daa87ef3 100644 --- a/include/dm/util.h +++ b/include/dm/util.h @@ -25,7 +25,7 @@ struct list_head; int list_count_items(struct list_head *head); /* Dump out a tree of all devices */ -void dm_dump_all(void); +void dm_dump_tree(void); /* Dump out a list of uclasses and their devices */ void dm_dump_uclass(void); |