mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
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: 1973b381a1 ("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>
This commit is contained in:
parent
275d80a4c2
commit
d8d8997bbc
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue