diff options
author | Dylan Corrales <deathcamel58@gmail.com> | 2023-10-19 10:02:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-27 16:01:47 -0400 |
commit | 63507f9f1f8b3506e21fec78a6cd8d99fe8de2a2 (patch) | |
tree | 01d59dcac95cd4f97d981076c74fb63f68a5f478 | |
parent | f83dd7d0295146fd6cf7fd8e9fea8ea842b3ce3c (diff) | |
download | u-boot-63507f9f1f8b3506e21fec78a6cd8d99fe8de2a2.zip u-boot-63507f9f1f8b3506e21fec78a6cd8d99fe8de2a2.tar.gz u-boot-63507f9f1f8b3506e21fec78a6cd8d99fe8de2a2.tar.bz2 |
doc: Replace dm_dump_all() with dm_dump_tree()
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>
-rw-r--r-- | doc/develop/driver-model/debugging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/develop/driver-model/debugging.rst b/doc/develop/driver-model/debugging.rst index bbb2794..e13abdd 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). |