diff mbox series

[U-Boot,1/1] log: fix typo LOGL_EFI

Message ID 20180323201217.27831-1-xypron.glpk@gmx.de
State Accepted
Commit d8d8997bbce7ff81799cb20795bdf97db9f8d5f2
Delegated to: Alexander Graf
Headers show
Series [U-Boot,1/1] log: fix typo LOGL_EFI | expand

Commit Message

Heinrich Schuchardt March 23, 2018, 8:12 p.m. UTC
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>
---
 include/log.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass March 30, 2018, 8:42 a.m. UTC | #1
On 24 March 2018 at 04:12, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
> 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>
> ---
>  include/log.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Heinrich Schuchardt April 10, 2018, 3:49 p.m. UTC | #2
On 03/30/2018 10:42 AM, Simon Glass wrote:
> On 24 March 2018 at 04:12, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
>> 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>
>> ---
>>  include/log.h | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Reviewed-by: Simon Glass <sjg@chromium.org>
> 
Hello Alex,

in patchwork the patch is assigned to you.
https://patchwork.ozlabs.org/patch/890199/

Could you, please, pick it for v2018.05-rc2.

Best regards

Heinrich
diff mbox series

Patch

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,