diff options
author | Tian Tao <tiantao6@hisilicon.com> | 2020-09-09 08:44:32 +0200 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2020-09-16 17:53:42 +0200 |
commit | 5c4c30f40ca246f83b6663984dcdcbfeb0f8b66f (patch) | |
tree | 6200216231a62c8a55b8186385bfe5eca5892483 /drivers | |
parent | efi/libstub: arm32: Use low allocation for the uncompressed kernel (diff) | |
download | linux-5c4c30f40ca246f83b6663984dcdcbfeb0f8b66f.tar.xz linux-5c4c30f40ca246f83b6663984dcdcbfeb0f8b66f.zip |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/firmware/efi/libstub/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/libstub/vsprintf.c b/drivers/firmware/efi/libstub/vsprintf.c index e65ef49a54cd..1088e288c04d 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; } |