/* 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;
}
/* 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;
}
/* 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;
}
* 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;
}