diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-17 08:49:25 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2020-07-20 09:46:42 +0800 |
commit | d2ee543ae2af3a3f04ca6c92f4175f342109af54 (patch) | |
tree | 8f7bbbf95b317aedfeab011fbdc420f19154f590 /drivers/core/acpi.c | |
parent | 49cf75101db58ad3540d8de6749cf0c1d780dc76 (diff) | |
download | u-boot-d2ee543ae2af3a3f04ca6c92f4175f342109af54.tar.gz u-boot-d2ee543ae2af3a3f04ca6c92f4175f342109af54.tar.xz u-boot-d2ee543ae2af3a3f04ca6c92f4175f342109af54.zip |
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/core/acpi.c')
-rw-r--r-- | drivers/core/acpi.c | 2 |
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; } |