]> git.sur5r.net Git - u-boot/commitdiff
log: fix typo LOGL_EFI
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Fri, 23 Mar 2018 20:12:17 +0000 (21:12 +0100)
committerAlexander Graf <agraf@suse.de>
Mon, 23 Apr 2018 19:34:28 +0000 (21:34 +0200)
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>
include/log.h

index 20dc5289c7140866e33cf0d73db16dd765557d96..3cf08de6d0cf0ee43f21e6373b3c9e6d9613f7b0 100644 (file)
@@ -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,