mirror of https://github.com/thesofproject/sof.git
rimage: change error to warning if section not found
Thats because this function is used also to find optional sections so it will be decided later (outside of this func) if this is actually error Signed-off-by: Adrian Bonislawski <adrian.bonislawski@linux.intel.com>
This commit is contained in:
parent
6c908797c6
commit
a82b44043f
|
@ -524,7 +524,7 @@ int elf_find_section(struct image *image, struct module *module,
|
|||
}
|
||||
}
|
||||
|
||||
fprintf(stderr, "error: can't find section %s in module %s\n", name,
|
||||
fprintf(stderr, "warning: can't find section %s in module %s\n", name,
|
||||
module->elf_file);
|
||||
ret = -EINVAL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue