From 3d01254140fc9e5e900d739cb97bd9fba6aa2b68 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 17 Jan 2023 10:47:12 -0700 Subject: dm: core: Support sorting devices with dm tree Add a -s flag to sort the top-level devices in order of uclass ID. Signed-off-by: Simon Glass --- include/dm/util.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'include/dm/util.h') diff --git a/include/dm/util.h b/include/dm/util.h index e10c6060ce..4bb49e9e8c 100644 --- a/include/dm/util.h +++ b/include/dm/util.h @@ -26,8 +26,12 @@ struct list_head; */ int list_count_items(struct list_head *head); -/* Dump out a tree of all devices */ -void dm_dump_tree(void); +/** + * Dump out a tree of all devices + * + * @sort: Sort by uclass name + */ +void dm_dump_tree(bool sort); /* Dump out a list of uclasses and their devices */ void dm_dump_uclass(void); -- cgit v1.2.3