diff options
author | Simon Glass <sjg@chromium.org> | 2020-09-22 12:45:34 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2020-09-25 11:27:23 +0800 |
commit | 2da4b6998e74f27d3102f4dbe680825e12e2272b (patch) | |
tree | 49fc7499f79db588e56389319a79ad468d2fda1e /arch | |
parent | 77bb1c69dfca24e4c14fd6876a68a38118142cae (diff) | |
download | u-boot-2da4b6998e74f27d3102f4dbe680825e12e2272b.tar.gz |
x86: acpi: Set the log category for x86 table generation
This file doesn't currently have a log category. Add one so that items
are logged correctly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/lib/acpi_table.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/lib/acpi_table.c b/arch/x86/lib/acpi_table.c index 10cf3b7094..6d405b09fd 100644 --- a/arch/x86/lib/acpi_table.c +++ b/arch/x86/lib/acpi_table.c @@ -6,6 +6,8 @@ * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com> */ +#define LOG_CATEGORY LOGC_ACPI + #include <common.h> #include <bloblist.h> #include <cpu.h> |