mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
dm: core: Don't show an ACPI warning if there is no ordering
Some boards don't care about the ordering of ACPI code fragments. Change the warning to a debug message. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
49cf75101d
commit
d2ee543ae2
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ static int sort_acpi_item_type(struct acpi_ctx *ctx, void *start,
|
|||
"u-boot,acpi-dsdt-order" :
|
||||
"u-boot,acpi-ssdt-order", &size);
|
||||
if (!order) {
|
||||
log_warning("Failed to find ordering, leaving as is\n");
|
||||
log_debug("Failed to find ordering, leaving as is\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue