All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] efi/printf: remove unneeded semicolon
@ 2020-09-09  6:44 Tian Tao
  2020-09-09 19:01 ` Arvind Sankar
  2020-09-18  8:30 ` [tip: efi/core] " tip-bot2 for Tian Tao
  0 siblings, 2 replies; 4+ messages in thread
From: Tian Tao @ 2020-09-09  6:44 UTC (permalink / raw)
  To: ardb, nivedita, linux-efi; +Cc: linuxarm

Fix the warning below.
efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
---
 drivers/firmware/efi/libstub/vsprintf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/firmware/efi/libstub/vsprintf.c b/drivers/firmware/efi/libstub/vsprintf.c
index e65ef49..1088e28 100644
--- a/drivers/firmware/efi/libstub/vsprintf.c
+++ b/drivers/firmware/efi/libstub/vsprintf.c
@@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase)
 		break;
 	default:
 		unreachable();
-	};
+	}
 
 	return end;
 }
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] efi/printf: remove unneeded semicolon
  2020-09-09  6:44 [PATCH] efi/printf: remove unneeded semicolon Tian Tao
@ 2020-09-09 19:01 ` Arvind Sankar
  2020-09-11 15:19   ` Ard Biesheuvel
  2020-09-18  8:30 ` [tip: efi/core] " tip-bot2 for Tian Tao
  1 sibling, 1 reply; 4+ messages in thread
From: Arvind Sankar @ 2020-09-09 19:01 UTC (permalink / raw)
  To: Tian Tao; +Cc: ardb, nivedita, linux-efi, linuxarm

On Wed, Sep 09, 2020 at 02:44:32PM +0800, Tian Tao wrote:
> Fix the warning below.
> efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon
> 
> Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
> ---
>  drivers/firmware/efi/libstub/vsprintf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/firmware/efi/libstub/vsprintf.c b/drivers/firmware/efi/libstub/vsprintf.c
> index e65ef49..1088e28 100644
> --- a/drivers/firmware/efi/libstub/vsprintf.c
> +++ b/drivers/firmware/efi/libstub/vsprintf.c
> @@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase)
>  		break;
>  	default:
>  		unreachable();
> -	};
> +	}
>  
>  	return end;
>  }
> -- 
> 2.7.4
> 

Acked-by: Arvind Sankar <nivedita@alum.mit.edu>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] efi/printf: remove unneeded semicolon
  2020-09-09 19:01 ` Arvind Sankar
@ 2020-09-11 15:19   ` Ard Biesheuvel
  0 siblings, 0 replies; 4+ messages in thread
From: Ard Biesheuvel @ 2020-09-11 15:19 UTC (permalink / raw)
  To: Arvind Sankar; +Cc: Tian Tao, linux-efi, Linuxarm

On Wed, 9 Sep 2020 at 22:01, Arvind Sankar <nivedita@alum.mit.edu> wrote:
>
> On Wed, Sep 09, 2020 at 02:44:32PM +0800, Tian Tao wrote:
> > Fix the warning below.
> > efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon
> >
> > Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
> > ---
> >  drivers/firmware/efi/libstub/vsprintf.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/firmware/efi/libstub/vsprintf.c b/drivers/firmware/efi/libstub/vsprintf.c
> > index e65ef49..1088e28 100644
> > --- a/drivers/firmware/efi/libstub/vsprintf.c
> > +++ b/drivers/firmware/efi/libstub/vsprintf.c
> > @@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase)
> >               break;
> >       default:
> >               unreachable();
> > -     };
> > +     }
> >
> >       return end;
> >  }
> > --
> > 2.7.4
> >
>
> Acked-by: Arvind Sankar <nivedita@alum.mit.edu>

Queued in efi/next, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [tip: efi/core] efi/printf: remove unneeded semicolon
  2020-09-09  6:44 [PATCH] efi/printf: remove unneeded semicolon Tian Tao
  2020-09-09 19:01 ` Arvind Sankar
@ 2020-09-18  8:30 ` tip-bot2 for Tian Tao
  1 sibling, 0 replies; 4+ messages in thread
From: tip-bot2 for Tian Tao @ 2020-09-18  8:30 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Tian Tao, Arvind Sankar, Ard Biesheuvel, x86, LKML

The following commit has been merged into the efi/core branch of tip:

Commit-ID:     5c4c30f40ca246f83b6663984dcdcbfeb0f8b66f
Gitweb:        https://git.kernel.org/tip/5c4c30f40ca246f83b6663984dcdcbfeb0f8b66f
Author:        Tian Tao <tiantao6@hisilicon.com>
AuthorDate:    Wed, 09 Sep 2020 14:44:32 +08:00
Committer:     Ard Biesheuvel <ardb@kernel.org>
CommitterDate: Wed, 16 Sep 2020 18:53:42 +03:00

efi/printf: remove unneeded semicolon

Fix the warning below.
efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
Acked-by: Arvind Sankar <nivedita@alum.mit.edu>
Link: https://lore.kernel.org/r/1599633872-36784-1-git-send-email-tiantao6@hisilicon.com
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
---
 drivers/firmware/efi/libstub/vsprintf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/firmware/efi/libstub/vsprintf.c b/drivers/firmware/efi/libstub/vsprintf.c
index e65ef49..1088e28 100644
--- a/drivers/firmware/efi/libstub/vsprintf.c
+++ b/drivers/firmware/efi/libstub/vsprintf.c
@@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase)
 		break;
 	default:
 		unreachable();
-	};
+	}
 
 	return end;
 }

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-09-18  8:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-09  6:44 [PATCH] efi/printf: remove unneeded semicolon Tian Tao
2020-09-09 19:01 ` Arvind Sankar
2020-09-11 15:19   ` Ard Biesheuvel
2020-09-18  8:30 ` [tip: efi/core] " tip-bot2 for Tian Tao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.