From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 305E0C43463 for ; Fri, 18 Sep 2020 08:31:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C701D2084C for ; Fri, 18 Sep 2020 08:31:57 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="RZRECHlo"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="pZIVLLZq" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726787AbgIRIb4 (ORCPT ); Fri, 18 Sep 2020 04:31:56 -0400 Received: from Galois.linutronix.de ([193.142.43.55]:32840 "EHLO galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725874AbgIRIa6 (ORCPT ); Fri, 18 Sep 2020 04:30:58 -0400 Date: Fri, 18 Sep 2020 08:30:55 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1600417856; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EPplkmaOtUB9eN2pZ4gDdPV5Ijo8tZlzpgcu8ksrw88=; b=RZRECHlo7oCTFw47ZYhi0dAYerQMMNFzPGcFgwlDMF+MLjr8OokGZzcrTM4ohUqmg7D8el aniR+8duUL04F2uyVZ8mv/7oqlM3Tb6y8np77k+AIVyrJKZPYOmVuLLdd6kLEsZ4JwGqvO kR2/SWhbqY+3t7HgGaBN5xQNNjY6iwHzRDLex7Zu7ycdSEy13o1G9P+imjEZmBS6Q19oDz 2dwlgq+ZMDIe5u8nG3HX/H/Bo9X9NkUQEBqsb0nE1fUAwrwoO0eamyzmjKfFHDh79afv0Q iJ5u80J2TQusqXf+W1hfweMmgZhh0lIlldqnJx2Eg/z/43qpuAfDdnwvUbAErA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1600417856; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EPplkmaOtUB9eN2pZ4gDdPV5Ijo8tZlzpgcu8ksrw88=; b=pZIVLLZqmipWpDnXbGqCOtVBjcCHf5OCUv8AgpksEjbwG21cSQo4YOeBJEVCFmE5L4uJ5f ygunCsPsjkJasRBg== From: "tip-bot2 for Tian Tao" Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: efi/core] efi/printf: remove unneeded semicolon Cc: Tian Tao , Arvind Sankar , Ard Biesheuvel , x86 , LKML In-Reply-To: <1599633872-36784-1-git-send-email-tiantao6@hisilicon.com> References: <1599633872-36784-1-git-send-email-tiantao6@hisilicon.com> MIME-Version: 1.0 Message-ID: <160041785566.15536.3114062822884187461.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 AuthorDate: Wed, 09 Sep 2020 14:44:32 +08:00 Committer: Ard Biesheuvel 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 Acked-by: Arvind Sankar Link: https://lore.kernel.org/r/1599633872-36784-1-git-send-email-tiantao6@hisilicon.com Signed-off-by: Ard Biesheuvel --- 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; }