Skip to content

Commit

Permalink
[review] core: dt_driver: do not defer probe on skip phandle arguments
Browse files Browse the repository at this point in the history
Fix bug in debug trace message implementation.

TODO: fix commit message header line: s/phandler/phandle/

Signed-off-by: Etienne Carriere <[email protected]>
  • Loading branch information
etienne-lms committed Nov 29, 2023
1 parent 980f40e commit 3a56ea8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/kernel/dt_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ TEE_Result dt_driver_device_from_node_idx_prop(const char *prop_name,
type);
if (prv_cells < 0) {
DMSG("Can't find cells count on node %s: %d",
fdt_get_name(phandle_node), prv_cells);
fdt_get_name(fdt, phandle_node, NULL),
prv_cells);
return TEE_ERROR_GENERIC;
}
}
Expand Down

0 comments on commit 3a56ea8

Please sign in to comment.