Skip to content
Snippets Groups Projects
Commit 1d6a0c95 authored by Fabio Estevam's avatar Fabio Estevam Committed by Simon Glass
Browse files

doc: dm: debugging: Fix the steps for activating debug


Following the recommendation of adding '#define DEBUG' at the top
of drivers/core/lists.c does not cause the debug messages to be
shown. Change it to '#define LOG_DEBUG' instead, which actually
makes it work as per doc/README.log.

While at it, provide the full path to lists.c to in order to make
the instructions clearer.

Signed-off-by: default avatarFabio Estevam <festevam@gmail.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 5ed2dc56
No related branches found
No related tags found
No related merge requests found
...@@ -58,5 +58,5 @@ If you are using of-platdata (e.g. CONFIG_SPL_OF_PLATDATA), check that the ...@@ -58,5 +58,5 @@ If you are using of-platdata (e.g. CONFIG_SPL_OF_PLATDATA), check that the
driver name is the same as the first compatible string in the device tree (with driver name is the same as the first compatible string in the device tree (with
invalid-variable characters converted to underscore). invalid-variable characters converted to underscore).
If you are really stuck, #define DEBUG at the top of lists.c should show you If you are really stuck, putting '#define LOG_DEBUG' at the top of
what is going on. drivers/core/lists.c should show you what is going on.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment