diff options
author | Simon Glass <sjg@chromium.org> | 2025-03-15 14:25:28 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-03 11:41:55 -0600 |
commit | 22c434b0fb658cf2af57a18f471e100571630e61 (patch) | |
tree | 57b9c97a15b8369dd0f2753a4bb8faef595b4f7a /arch/x86/lib/i8259.c | |
parent | 05b8f8a95d23ad0e1e800fc11029c0479cba976b (diff) |
x86: Add some log categories
Add categories for i8259 and bios files, so that log statements have the
right category.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/lib/i8259.c')
-rw-r--r-- | arch/x86/lib/i8259.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/lib/i8259.c b/arch/x86/lib/i8259.c index 465ff70146f..088f78f4661 100644 --- a/arch/x86/lib/i8259.c +++ b/arch/x86/lib/i8259.c @@ -13,6 +13,8 @@ * Programmable Interrupt Controllers. */ +#define LOG_CATEGORY UCLASS_IRQ + #include <log.h> #include <asm/io.h> #include <asm/i8259.h> |