summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-10-06 13:20:24 -0600
committerTom Rini <[email protected]>2025-10-06 13:20:24 -0600
commit0eaa4b337336dbbe93395d1f2ccc18937eaafea2 (patch)
treec01e661d69181dceca68f56a4849a9bd04608521 /lib
parente50b1e8715011def8aff1588081a2649a2c6cd47 (diff)
parent4e4a9de31de2a5f395ee25c59e4026422fbcb27e (diff)
Merge branch 'next'
Merge the outstanding changes from the 'next' branch to master.
Diffstat (limited to 'lib')
-rw-r--r--lib/optee/optee.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/optee/optee.c b/lib/optee/optee.c
index 393f2715a9c..c643fd8fea0 100644
--- a/lib/optee/optee.c
+++ b/lib/optee/optee.c
@@ -87,7 +87,7 @@ static int optee_copy_firmware_node(ofnode node, void *fdt_blob)
/* copy the compatible property */
prop = ofnode_get_property(node, "compatible", &len);
if (!prop) {
- debug("missing OP-TEE compatible property");
+ debug("missing OP-TEE compatible property\n");
return -EINVAL;
}
@@ -98,7 +98,7 @@ static int optee_copy_firmware_node(ofnode node, void *fdt_blob)
/* copy the method property */
prop = ofnode_get_property(node, "method", &len);
if (!prop) {
- debug("missing OP-TEE method property");
+ debug("missing OP-TEE method property\n");
return -EINVAL;
}
@@ -121,7 +121,7 @@ int optee_copy_fdt_nodes(void *new_blob)
/* only proceed if there is an /firmware/optee node */
node = ofnode_path("/firmware/optee");
if (!ofnode_valid(node)) {
- debug("No OP-TEE firmware node in old fdt, nothing to do");
+ debug("No OP-TEE firmware node in old fdt, nothing to do\n");
return 0;
}
@@ -131,7 +131,7 @@ int optee_copy_fdt_nodes(void *new_blob)
* so do not interfere.
*/
if (fdt_path_offset(new_blob, "/firmware/optee") >= 0) {
- debug("OP-TEE Device Tree node already exists in target");
+ debug("OP-TEE Device Tree node already exists in target\n");
return 0;
}