mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 15:01:27 +02:00
Merge tag 'dm-pull9apr20' of git://git.denx.de/u-boot-dm
Fixes segfault in 'dm drivers' command
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user