diff --git a/common/fdt_wrappers.c b/common/fdt_wrappers.c index 64e01ea6d..cfa134243 100644 --- a/common/fdt_wrappers.c +++ b/common/fdt_wrappers.c @@ -35,7 +35,7 @@ int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name, /* Access property and obtain its length (in bytes) */ prop = fdt_getprop(dtb, node, prop_name, &value_len); if (prop == NULL) { - WARN("Couldn't find property %s in dtb\n", prop_name); + VERBOSE("Couldn't find property %s in dtb\n", prop_name); return -FDT_ERR_NOTFOUND; }