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:
Adrian Bonislawski 2019-06-19 12:06:46 +02:00 committed by Liam Girdwood
parent 6c908797c6
commit a82b44043f
1 changed files with 1 additions and 1 deletions

View File

@ -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;