]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
doc: Replace dm_dump_all() with dm_dump_tree()
authorDylan Corrales <deathcamel58@gmail.com>
Thu, 19 Oct 2023 14:02:30 +0000 (10:02 -0400)
committerTom Rini <trini@konsulko.com>
Fri, 27 Oct 2023 20:01:47 +0000 (16:01 -0400)
Replace dm_dump_all() with dm_dump_tree() in driver model documentation,
to reflect changes introduced in commit 145287040480 ("dm: core: Rename
dm_dump_all()").

Fixes: 145287040480 ("dm: core: Rename dm_dump_all()")
Signed-off-by: Dylan Corrales <deathcamel58@gmail.com>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Reivewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
doc/develop/driver-model/debugging.rst

index bbb2794340fc42f8300586450e092ba99854f208..e13abddae66465dae15aced53541915cc92b248f 100644 (file)
@@ -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).