diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-03-23 21:12:17 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-23 21:34:28 +0200 |
commit | d8d8997bbce7ff81799cb20795bdf97db9f8d5f2 (patch) | |
tree | 6d9b42eca0f6738f3d5cc346ea8d2833a2206e9b /include | |
parent | 275d80a4c2fb63890f3f4c16b7ad481064e650a0 (diff) | |
download | u-boot-d8d8997bbce7ff81799cb20795bdf97db9f8d5f2.tar.gz u-boot-d8d8997bbce7ff81799cb20795bdf97db9f8d5f2.tar.bz2 u-boot-d8d8997bbce7ff81799cb20795bdf97db9f8d5f2.zip |
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')
-rw-r--r-- | include/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/log.h b/include/log.h index 20dc5289c7..3cf08de6d0 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, |