summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-07-17 08:49:25 -0600
committerBin Meng <bmeng.cn@gmail.com>2020-07-20 09:46:42 +0800
commitd2ee543ae2af3a3f04ca6c92f4175f342109af54 (patch)
tree8f7bbbf95b317aedfeab011fbdc420f19154f590 /drivers
parent49cf75101db58ad3540d8de6749cf0c1d780dc76 (diff)
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/core/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/acpi.c b/drivers/core/acpi.c
index cdbc2c5cf5..7fe93992b5 100644
--- a/drivers/core/acpi.c
+++ b/drivers/core/acpi.c
@@ -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;
}