aboutsummaryrefslogtreecommitdiff
path: root/include/log.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-03-23 21:12:17 +0100
committerAlexander Graf <agraf@suse.de>2018-04-23 21:34:28 +0200
commitd8d8997bbce7ff81799cb20795bdf97db9f8d5f2 (patch)
tree6d9b42eca0f6738f3d5cc346ea8d2833a2206e9b /include/log.h
parent275d80a4c2fb63890f3f4c16b7ad481064e650a0 (diff)
downloadu-boot-d8d8997bbce7ff81799cb20795bdf97db9f8d5f2.zip
u-boot-d8d8997bbce7ff81799cb20795bdf97db9f8d5f2.tar.gz
u-boot-d8d8997bbce7ff81799cb20795bdf97db9f8d5f2.tar.bz2
log: fix typo LOGL_EFI
According to the documentation the EFI log category is called LOGC_EFI. All other categories start with LOGC_. So let's fix it. Fixes: 1973b381a1b3 ("log: add category LOGC_EFI") Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/log.h b/include/log.h
index 20dc528..3cf08de 100644
--- a/include/log.h
+++ b/include/log.h
@@ -46,7 +46,7 @@ enum log_category_t {
LOGC_CORE,
LOGC_DM, /* Core driver-model */
LOGC_DT, /* Device-tree */
- LOGL_EFI, /* EFI implementation */
+ LOGC_EFI, /* EFI implementation */
LOGC_COUNT,
LOGC_END,