summaryrefslogtreecommitdiff
path: root/doc/develop
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-10-27 15:23:21 -0400
committerTom Rini <[email protected]>2023-10-27 16:01:47 -0400
commit913d830cf093c10ca3233038e81c11beb63ec802 (patch)
treef67bac1b3992eb354c12277565e8e3cc26588168 /doc/develop
parent454ee551913996d1d3c5e053e1cebc69fb7b0f8e (diff)
parent946b311e47da22e409f2b0af5a3930db465e7eb8 (diff)
Merge tag 'efi-2024-01-rc2-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2024-01-rc2-2 Documentation: * Bump urllib3 version * Replace references to dm_dump_all() with dm_dump_tree() * Update description of build dependencies for Alpine Linux * Fix typo in gpt example * Fix ordering of shell commands UEFI: * Move misplace EFI_ENTRY macro
Diffstat (limited to 'doc/develop')
-rw-r--r--doc/develop/driver-model/debugging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/develop/driver-model/debugging.rst b/doc/develop/driver-model/debugging.rst
index bbb2794340f..e13abddae66 100644
--- a/doc/develop/driver-model/debugging.rst
+++ b/doc/develop/driver-model/debugging.rst
@@ -49,7 +49,7 @@ to see errors. Common ones are:
of_to_plat() method in the driver.
If there is no error, you should check if the device is actually bound. Call
-dm_dump_all() just before you locate the device to make sure it exists.
+dm_dump_tree() just before you locate the device to make sure it exists.
If it does not exist, check your device tree compatible strings match up with
what the driver expects (in the struct udevice_id array).