diff options
author | Simon Glass | 2023-06-01 10:22:43 -0600 |
---|---|---|
committer | Tom Rini | 2023-07-14 12:54:51 -0400 |
commit | c98cb512521e5e035774c49ab9a855cbb6b13813 (patch) | |
tree | 0fa958eb10919e74fa99919e23cc9e3121b33c15 /common/log.c | |
parent | a8f2ac2ae6f15b675a55bcf3a20181f3bb223562 (diff) |
bootstd: Add a separate log category for expo
This feature is different enough from bootstd that it probably deserves
its own log category. It cannot use a uclass since it is not a device.
Add a new category.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/log.c')
-rw-r--r-- | common/log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/log.c b/common/log.c index 7cfc49bc28a..6f02a25c593 100644 --- a/common/log.c +++ b/common/log.c @@ -31,6 +31,7 @@ static const char *const log_cat_name[] = { "boot", "event", "fs", + "expo", }; _Static_assert(ARRAY_SIZE(log_cat_name) == LOGC_COUNT - LOGC_NONE, |