mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-02 00:53:29 +08:00
dm: dump.c: Refactor dm_dump_drivers prints
Refactor the printing sequence in dm_dump_drivers to make it more clear. Signed-off-by: Ovidiu Panait <ovpanait@gmail.com> Cc: Sean Anderson <seanga2@gmail.com> Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
02197fa749
commit
28888ca38e
@ -107,12 +107,16 @@ void dm_dump_drivers(void)
|
|||||||
puts("Driver Compatible\n");
|
puts("Driver Compatible\n");
|
||||||
puts("--------------------------------\n");
|
puts("--------------------------------\n");
|
||||||
for (entry = d; entry < d + n_ents; entry++) {
|
for (entry = d; entry < d + n_ents; entry++) {
|
||||||
for (match = entry->of_match;
|
match = entry->of_match;
|
||||||
match && match->compatible; match++)
|
|
||||||
printf("%-20.20s %s\n",
|
printf("%-20.20s", entry->name);
|
||||||
match == entry->of_match ? entry->name : "",
|
if (match) {
|
||||||
match->compatible);
|
printf(" %s", match->compatible);
|
||||||
if (match == entry->of_match)
|
match++;
|
||||||
printf("%-20.20s\n", entry->name);
|
}
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
|
for (; match && match->compatible; match++)
|
||||||
|
printf("%-20.20s %s\n", "", match->compatible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user