Lines Matching refs:devs
35 struct udevice **devs) in show_devices() argument
64 if (devs) { in show_devices()
70 devs[count++] = child; in show_devices()
71 qsort(devs, count, sizeof(struct udevice *), h_cmp_uclass_id); in show_devices()
74 show_devices(devs[i], depth + 1, in show_devices()
76 devs + count); in show_devices()
95 struct udevice **devs = NULL; in dm_dump_tree() local
102 devs = calloc(dev_count, sizeof(struct udevice *)); in dm_dump_tree()
103 if (!devs) { in dm_dump_tree()
108 show_devices(root, -1, 0, devs); in dm_dump_tree()
109 free(devs); in dm_dump_tree()