diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-01-22 20:10:45 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-02-03 10:09:28 -0700 |
commit | 1973b381a1b3545783c3238080f566746579e923 (patch) | |
tree | 6642d2bd5a865a775446423b1c12a925d6986261 /common/log.c | |
parent | 3707c6ee0d1f939130a62c945b56045d9a83fafc (diff) | |
download | u-boot-1973b381a1b3545783c3238080f566746579e923.tar.gz |
log: add category LOGC_EFI
The EFI implementation does not fit into any of the existing categories.
Provide LOGC_EFI so that EFI related message can be filtered.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-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 1b1b98e5de..680a60f86e 100644 --- a/common/log.c +++ b/common/log.c @@ -21,6 +21,7 @@ static const char *log_cat_name[LOGC_COUNT - LOGC_NONE] = { "core", "driver-model", "device-tree", + "efi", }; static const char *log_level_name[LOGL_COUNT] = { |