From: Heinrich Schuchardt Date: Fri, 23 Mar 2018 20:12:17 +0000 (+0100) Subject: log: fix typo LOGL_EFI X-Git-Tag: v2018.05-rc3~41^2~9 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d8d8997bbce7ff81799cb20795bdf97db9f8d5f2;p=u-boot 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 Reviewed-by: Simon Glass Signed-off-by: Alexander Graf --- 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,